Skip to main content
POST
/
organization
/
{sipId}
/
phone-number
Add a phone number
curl --request POST \
  --url https://api.callers.ai/organization/{sipId}/phone-number \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phoneNumbers": [
    "14155552671",
    "+442071234567"
  ]
}
'
{
  "status": "error",
  "message": "<string>",
  "data": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Headers

x-sub-organization-id
string

Optional sub organization ID. Must belong to your main organization API key.

Path Parameters

sipId
string
required

Body

application/json
phoneNumbers
string[]
required

Array of phone numbers with country codes

Example:
["14155552671", "+442071234567"]

Response

phone number Created successfully.