Outbound call

Places a real, billable phone call and waits until the destination answers or dialing fails. A successful response means the call was answered; the final attendance decision is delivered asynchronously to callback_uri.

POST
/api/v1/outbound

Authorization

ApiKeyAuth
x-api-key<token>

Create an organization API key in the Neuroline dashboard.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Starts a real outbound phone call. A successful request may incur telephony and AI usage charges.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

Callbacks

curl -X POST "https://example.com/api/v1/outbound" \  -H "Content-Type: application/json" \  -d '{    "from": "+31201234567",    "to": "+31612345678",    "language": "en",    "callback_uri": "https://example.com/webhooks/neuroline"  }'
{  "ok": true,  "status": "answered"}