POST
/
v2
/
ghl
/
make-call
curl --request POST \
  --url https://api.assistable.ai/v2/ghl/make-call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "number_pool_id": "<string>",
  "assistant_id": "<string>",
  "location_id": "<string>",
  "contact_id": "<string>"
}'
{
  "success": true,
  "call_id": "<string>",
  "returned_an_error": true,
  "error_message": "<string>",
  "error_code": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json
Call successfully initiated

The response is of type object.