mono-logo

Create a Customer

April 8th, 2024

post api.withmono.com/v2/customers
v1.0

This resource is to create a unique customer.

Body
Headers

Request

123456789101112131415161718
curl --request POST \
     --url https://api.withmono.com/v2/customers \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'mono-sec-key: string' \
     --data '
{
  "identity": {
    "type": "string",
    "number": "string"
  },
  "email": "string",
  "lastName": "string",
  "firstName": "string",
  "address": "string",
  "phone": "string"
}
'

Response

Choose an option from the drop down or click one of these buttons to see an example:

Did this page help you?