Agents
Outbound Call from Agent
API Documentation
Authorization
Agents
Phone Numbers
SIP
Messaging
Knowledge
Accounts
Billing
Agents
Outbound Call from Agent
Use this endpoint to initiate an outbound call from your Vida agent to a destination number or user. Your agent will handle the call.
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
Vida API Token
Body
application/json
Response
200 - application/json
Success
The response is of type object
.
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."
}