Endpoint Examples
Twilio - Get Context
Endpoint Examples
Twilio - Get Context
After a call is complete, you can use this to retrieve context about the call
POST
/
voice
/
api
/
v1
/
twilio
/
get-context
curl --request POST \
--url https://protegee.ai/voice/api/v1/twilio/get-context \
--header 'Content-Type: application/json' \
--data '{
"caller": "+16151231234"
}'
{
"caller": "<string>",
"description": "Reservation for two at The Gourmet Bistro, 7:30 PM on December 30th, 2024, Table 12, Indoor seating, Special request: Window view, Confirmation number: 12345",
"price": "10.00",
"vendor": "example-co",
"customer_id": "",
"persona": "english-jessica",
"callback": "+14155552671",
"email": "[email protected]",
"full_name": "John Doe",
"transaction_type": "once",
"memory": "",
"status": "payment-success",
"start_time": "2024-12-30T02:59:32.213280+00:00",
"processor": {},
"debug": ""
}
Query Parameters
API token to authenticate the request
Body
application/json
Response
200
application/json
Response
The response is of type object
.
curl --request POST \
--url https://protegee.ai/voice/api/v1/twilio/get-context \
--header 'Content-Type: application/json' \
--data '{
"caller": "+16151231234"
}'
{
"caller": "<string>",
"description": "Reservation for two at The Gourmet Bistro, 7:30 PM on December 30th, 2024, Table 12, Indoor seating, Special request: Window view, Confirmation number: 12345",
"price": "10.00",
"vendor": "example-co",
"customer_id": "",
"persona": "english-jessica",
"callback": "+14155552671",
"email": "[email protected]",
"full_name": "John Doe",
"transaction_type": "once",
"memory": "",
"status": "payment-success",
"start_time": "2024-12-30T02:59:32.213280+00:00",
"processor": {},
"debug": ""
}