curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "0198f652-7b36-7610-a1a2-e1bf06c8f4e7",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "0198f652-7b36-7d25-bac5-00cb44a461e2",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "0198f652-7b36-76f5-abad-37e442aadcd8",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "0198f652-7b36-705b-8ee7-36acaf42a7be",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "0198f652-7b36-7720-87ac-23b202daf681",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "0198f652-7b36-71c0-8bc7-b89c04ce64c0",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}
List dispositions
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "0198f652-7b36-7610-a1a2-e1bf06c8f4e7",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "0198f652-7b36-7d25-bac5-00cb44a461e2",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "0198f652-7b36-76f5-abad-37e442aadcd8",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "0198f652-7b36-705b-8ee7-36acaf42a7be",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "0198f652-7b36-7720-87ac-23b202daf681",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "0198f652-7b36-71c0-8bc7-b89c04ce64c0",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful
The response is of type object
.
Was this page helpful?