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>",
        "id": "<string>",
        "name": "<string>",
        "phone": "<string>",
        "email": "<string>",
        "role": "<string>"
      }
    ]
  }
}
'
{
  "id": "<string>",
  "name": "<string>",
  "externalIds": [
    {
      "type": "ALJEX",
      "value": "<string>"
    }
  ],
  "contacts": [
    {
      "carrierId": "<string>",
      "id": "<string>",
      "name": "<string>",
      "phone": "<string>",
      "email": "<string>",
      "role": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.vooma.ai/llms.txt

Use this file to discover all available pages before exploring further.

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

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