Answered
Capture data while a call is answered.
Create an answered call
POST
https://{{account_id}}.acquire.io/api/v1/voip/call-answered
Create an answered call.
Request Body
Name
Type
Description
Direction*
string
The direction of the call. 'outgoing' | 'incoming'
From*
string
Phone number of the caller
To*
string
Phone number of the callee
CallId*
string
ID of the call
email*
string
Email of the callee
{
"data": {
"success": true,
"message": "Successfully saved"
}
}
Body (raw)
{
"From": "+1234567890",
"To": "+1789451230",
"CallId": "CA12345678904567890",
"email": "[email protected]",
"Direction": "incoming"
}
Last updated