Skip to main content
POST
/
customers
cURL
curl --request POST \
  --url https://api.vooma.ai/v0/customers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "customer": {
    "name": "<string>",
    "externalIds": [
      {
        "type": "ALJEX",
        "value": "<string>"
      }
    ],
    "contacts": [
      {
        "carrierId": "<string>",
        "customerId": "<string>",
        "email": "<string>",
        "phone": "<string>",
        "name": "<string>",
        "id": "<string>"
      }
    ]
  }
}
'
{
  "name": "<string>",
  "externalIds": [
    {
      "type": "ALJEX",
      "value": "<string>"
    }
  ],
  "id": "<string>",
  "contacts": [
    {
      "carrierId": "<string>",
      "customerId": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "name": "<string>",
      "id": "<string>"
    }
  ]
}
Beta Feature: This functionality is currently in beta. You may experience changes or limited support as we continue to improve it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
customer
object
required

Response

200 - application/json

Ok

name
string
required
externalIds
object[]
required
id
string
required
contacts
object[]