Skip to main content
POST
https://app.famulor.de/api/
/
user
/
make_call
Make a phone 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",
  "data": {}
}
Use this endpoint to start an outbound phone call. Your AI assistant will automatically call the provided phone number and begin the conversation.

Request Body

phone_number
string
required
Destination phone number in E.164 format (example: +1234567890)
assistant_id
integer
required
The identifier of the assistant that will handle this call
variables
object
Dynamic data to pass to the assistant for personalization

Response

message
string
Status message confirming call initiation
data
object
Call metadata (may be empty on initial response)
{
  "message": "Call initiated successfully",
  "data": {}
}

Notes

  • The assistant must be configured and active
  • Phone numbers must be in E.164 international format
  • Variables are optional but help personalize the conversation
  • Call status can be tracked using the calls listing endpoint