POST
https://blurr.app
/
api
/
v1
/
call
curl --request POST \
  --url https://blurr.app/api/v1/call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "customerNumber": "<string>",
  "assistantId": "<string>",
  "phoneNumberId": "<string>"
}'
{
  "id": "<string>",
  "assistantId": "<string>",
  "customer": {
    "number": "<string>"
  },
  "status": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Make phone call

The body is of type object.

Response

200
application/json

call response

The response is of type object.