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

# Get Disposition by ID

> Get a specific disposition by its internal ID

Retrieves a specific disposition by its ID.

### Path Parameters

* **id** (*required*, number): The internal disposition ID (1-14 for default dispositions, higher for custom)

### Response

Returns a JSON object containing the disposition details.

```json theme={null}
{
  "data": {
    "_id": "507f1f77bcf86cd799439011",
    "id": 1,
    "name": "Answered - Meeting Set",
    "is_custom": false,
    "is_required": true,
    "category": "positive"
  }
}
```

### Error Responses

* **404 Not Found**: Disposition with the specified ID does not exist


## OpenAPI

````yaml GET /v1/dispositions/{id}
openapi: 3.0.1
info:
  title: Salesfinity API
  description: API documentation for Salesfinity platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://client-api.salesfinity.co
security:
  - ApiKeyAuth: []
paths:
  /v1/dispositions/{id}:
    get:
      tags:
        - Dispositions
      description: Get a specific disposition by its internal ID
      operationId: get-disposition-by-id
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
          description: Internal disposition ID
      responses:
        '200':
          description: Disposition retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/DispositionDTO'
        '404':
          description: Disposition not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DispositionDTO:
      type: object
      properties:
        _id:
          type: string
          description: Unique identifier
        id:
          type: integer
          description: Disposition ID
        name:
          type: string
          description: Human-readable disposition name
        is_custom:
          type: boolean
          description: Whether this is a custom disposition
        is_required:
          type: boolean
          description: Whether this disposition is required
        category:
          type: string
          enum:
            - positive
            - negative
            - neutral
            - not_answered
            - cancelled
          description: Disposition category
      required:
        - _id
        - id
        - name
        - is_custom
        - category
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````