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": "019a01e3-0953-754a-a346-f87c7a9fac4e",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "019a01e3-0953-7b98-8107-f6c1584fa3c2",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "019a01e3-0953-767e-baf5-2417edc7ba35",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "019a01e3-0953-7da3-8e25-94c1248d1f1c",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "019a01e3-0953-71ca-875f-8f68e048deeb",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "019a01e3-0953-705c-ad82-2dd0d94f849f",
"name": "Interested",
"slug": "interested",
"action": "complete"
}
]
}List dispositions
curl --request GET \
--url https://api.amplemarket.com/calls/dispositions \
--header 'Authorization: Bearer <token>'{
"dispositions": [
{
"id": "019a01e3-0953-754a-a346-f87c7a9fac4e",
"name": "No Answer",
"slug": "no_answer",
"action": "next_stage"
},
{
"id": "019a01e3-0953-7b98-8107-f6c1584fa3c2",
"name": "Left VM",
"slug": "no_answer_voicemail",
"action": "next_stage"
},
{
"id": "019a01e3-0953-767e-baf5-2417edc7ba35",
"name": "Wrong Number",
"slug": "wrong_number",
"action": "next_stage"
},
{
"id": "019a01e3-0953-7da3-8e25-94c1248d1f1c",
"name": "Busy call later",
"slug": "busy",
"action": "next_stage"
},
{
"id": "019a01e3-0953-71ca-875f-8f68e048deeb",
"name": "Not interested",
"slug": "not_interested",
"action": "complete"
},
{
"id": "019a01e3-0953-705c-ad82-2dd0d94f849f",
"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?