GET
/
calls
/
dispositions
curl --request GET \
  --url https://api.amplemarket.com/calls/dispositions \
  --header 'Authorization: Bearer <token>'
{
  "dispositions": [
    {
      "id": "0196352a-9c5c-7cf6-bcf4-1816f43e59fb",
      "name": "No Answer",
      "slug": "no_answer",
      "action": "next_stage"
    },
    {
      "id": "0196352a-9c5c-7b98-a306-0671f1adb656",
      "name": "Left VM",
      "slug": "no_answer_voicemail",
      "action": "next_stage"
    },
    {
      "id": "0196352a-9c5c-7115-a8f9-6deb8416e3ae",
      "name": "Wrong Number",
      "slug": "wrong_number",
      "action": "next_stage"
    },
    {
      "id": "0196352a-9c5c-75cc-9943-f2e623a9a74f",
      "name": "Busy call later",
      "slug": "busy",
      "action": "next_stage"
    },
    {
      "id": "0196352a-9c5c-7718-86ae-0f1a94f3563d",
      "name": "Not interested",
      "slug": "not_interested",
      "action": "complete"
    },
    {
      "id": "0196352a-9c5c-7175-bf73-d0727617d6d4",
      "name": "Interested",
      "slug": "interested",
      "action": "complete"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
successful
dispositions
object[]