curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "01985a67-c0d7-7e04-ae7d-922c25463914",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-7c62-b65c-6518d3e8f5c7",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-75f9-a70e-10388b0684ed",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-77f6-8484-3ffb1e42fd7e",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-7a4a-82de-218f5c892fbf",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "01985a67-c0d7-7f4e-8c72-3ffa327b6842",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}
List dispositions
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'
{
"dispositions": [
{
"id": "01985a67-c0d7-7e04-ae7d-922c25463914",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-7c62-b65c-6518d3e8f5c7",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-75f9-a70e-10388b0684ed",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-77f6-8484-3ffb1e42fd7e",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "01985a67-c0d7-7a4a-82de-218f5c892fbf",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "01985a67-c0d7-7f4e-8c72-3ffa327b6842",
"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?