POST
/
api
/
v2
/
agent
/
outboundCall
curl --request POST \
  --url https://api.vida.dev/api/v2/agent/outboundCall \
  --header 'Content-Type: application/json' \
  --data '{
  "context": "Name: Lyle Pratt. Interest: Completed a call back form on our website for more information about our products.",
  "target": "+1234567890 or john_doe"
}'
{
  "success": true,
  "message": "Outbound call initiated."
}

Authorizations

token
string
query
required

Vida API Token

Body

application/json
target
string
required

Phone number in E.164 format or VIDA username of the user

Example:

"+1234567890 or john_doe"

context
string

Additional context you want your Agent to be aware of when handling the call.

Example:

"Name: Lyle Pratt. Interest: Completed a call back form on our website for more information about our products."

Response

200 - application/json
Success
success
boolean
Example:

true

message
string
Example:

"Outbound call initiated."