Skip to main content
POST
/
api
/
user
/
make_call
Make a Call
curl --request POST \
  --url https://app.famulor.de/api/user/make_call \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_number": "<string>",
  "assistant_id": 123,
  "variables": {
    "customer_name": "<string>",
    "email": "<string>"
  }
}
'
{
  "message": "Call initiated successfully",
  "call_id": 480337,
  "status": "initiated"
}
This endpoint allows you to initiate a phone call.

Request Body

phone_number
string
required
The customer’s phone number in E.164 format (e.g. +1234567890)
assistant_id
integer
required
The ID of the assistant to make the call with
variables
object
The variables to be passed to the lead

Response

message
string
Confirmation message that the call was successfully initiated
call_id
integer
The unique ID of the created call
status
string
The initial status of the call (e.g. “initiated”)
curl -X POST "https://app.famulor.de/api/user/make_call" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "phone_number": "+4915123456789",
    "assistant_id": 123,
    "variables": {
      "customer_name": "Max Mustermann",
      "email": "max.mustermann@example.com"
    }
  }'
{
  "message": "Call initiated successfully",
  "call_id": 480337,
  "status": "initiated"
}