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": "019a79f9-cc53-7391-8efe-d342f1f4948e",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7a19-ab86-666d439d9321",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-74bd-b234-cf98ef82ee05",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7849-a0cf-fc8aa417dcd1",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7a75-9924-db0ddae6a535",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "019a79f9-cc53-76fd-b48a-afbe93302728",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}List dispositions
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'{
"dispositions": [
{
"id": "019a79f9-cc53-7391-8efe-d342f1f4948e",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7a19-ab86-666d439d9321",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-74bd-b234-cf98ef82ee05",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7849-a0cf-fc8aa417dcd1",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "019a79f9-cc53-7a75-9924-db0ddae6a535",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "019a79f9-cc53-76fd-b48a-afbe93302728",
"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?