Invoke a call answer

post
https://{api-gateway-hostname}
/v2/callback/agentAnswer

An object containing data, an object describing the agent answer request.

data
object
required
ani
string
required

The caller's ANI. If multiple calls registered with Mindful exist in the Connecting phase with the same ANI, only the most recent call attempt will receive the answer event.

Match pattern:
^\+?[1-9]\d{1,14}$
metadata
object

An object describing contact center metadata related to the call. When present, at least one object property is required.

The agent answer request was successfully accepted for processing

Auth
:
Server Variables
:
Body
curl --request POST \
--url https://api.getmindful.com/v2/callback/agentAnswer \
--header 'Authorization: Bearer 123' \
--header 'Content-Type: application/json' \
--data '{
"data": {
"ani": "string",
"metadata": {
"agentId": "string",
"queueId": "string"
}
}
}'