Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
successful
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "0199ba5b-e74a-7936-9b4a-7c42885c72e9",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-71fd-9e7b-0758412826b8",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-7325-82f7-774a9d5cc8e9",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-79af-ac0b-3bf9865fd101",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-7f9d-90f6-7c214aa3aa6f",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "0199ba5b-e74a-7692-bd01-f8eda4a3b09d",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}
List dispositions
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "0199ba5b-e74a-7936-9b4a-7c42885c72e9",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-71fd-9e7b-0758412826b8",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-7325-82f7-774a9d5cc8e9",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-79af-ac0b-3bf9865fd101",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "0199ba5b-e74a-7f9d-90f6-7c214aa3aa6f",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "0199ba5b-e74a-7692-bd01-f8eda4a3b09d",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful
Show child attributes
Was this page helpful?