Skip to main content
POST
/
api
/
v1
/
call
cURL
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>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.blurr.app/llms.txt

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

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

customerNumber
string
required

This is the number of the customer.

assistantId
string
required

This is the assistant id that will be used for the call.

phoneNumberId
string
required

This is the assistant id that will be used for the call.

Response

call response

id
string

This is the unique identifier for the call.

assistantId
string

This is the assistant that made the call.

customer
object
status
string

Available options: queued, ringing, in-progress, forwarding, ended.

type
string

This is the type of call. Available options: inboundPhoneCall, outboundPhoneCall.