> ## Documentation Index
> Fetch the complete documentation index at: https://docs.amplemarket.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List dispositions

> List dispositions



## OpenAPI

````yaml get /calls/dispositions
openapi: 3.0.1
info:
  title: Amplemarket API V1 Docs
  version: v1
servers:
  - url: https://api.amplemarket.com
security:
  - bearerAuth: []
paths:
  /calls/dispositions:
    get:
      tags:
        - Calls
      summary: List dispositions
      description: List dispositions
      parameters: []
      responses:
        '200':
          description: successful
          content:
            application/json:
              examples:
                successful:
                  value:
                    dispositions:
                      - id: 019f5b76-8569-79e9-a513-33369804de2d
                        name: No Answer
                        slug: no_answer
                        action: next_stage
                      - id: 019f5b76-8569-7487-a06c-ee58af2b8b82
                        name: Left VM
                        slug: no_answer_voicemail
                        action: next_stage
                      - id: 019f5b76-8569-7768-af2b-3f9fcea513c4
                        name: Wrong Number
                        slug: wrong_number
                        action: next_stage
                      - id: 019f5b76-8569-7215-85a7-fc090dbef095
                        name: Busy call later
                        slug: busy
                        action: next_stage
                      - id: 019f5b76-8569-72c5-8a1e-2b73e29bfad4
                        name: Not interested
                        slug: not_interested
                        action: complete
                      - id: 019f5b76-8569-7799-93e8-f858102955a7
                        name: Interested
                        slug: interested
                        action: complete
              schema:
                type: object
                properties:
                  dispositions:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        slug:
                          nullable: true
                          type: string
                        name:
                          type: string
                        action:
                          type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````