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

# Get all for current business



## OpenAPI

````yaml /openapi.json post /dispositions/all/my
openapi: 3.0.4
info:
  title: Leadping API
  description: >-
    Leadping API for lead intake, messaging, calling, automations, billing,
    business settings, and compliant lead communication workflows.
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: v1
servers:
  - url: https://api.leadping.ai
    description: Production
security: []
tags:
  - name: Analytics
  - name: Automations
  - name: Contact
  - name: Conversations
  - name: Dispositions
  - name: Feedback
  - name: Leads
  - name: LeadStatuses
  - name: Notifications
  - name: OutboundDelivery
  - name: Sources
  - name: Suppressions
  - name: Tags
  - name: Users
  - name: Calls
  - name: PhoneNumbers
  - name: Sms
  - name: Telephony
  - name: UserDataExports
  - name: CallEvents
  - name: Events
  - name: SmsEvents
  - name: Businesses
  - name: PaymentMethods
  - name: Transactions
  - name: Usage
  - name: Wallets
paths:
  /dispositions/all/my:
    post:
      tags:
        - Dispositions
      summary: Get all for current business
      operationId: Dispositions_GetAllForCurrentBusiness
      requestBody:
        content:
          application/json:
            schema:
              allOf:
                - $ref: '#/components/schemas/RequestDataOptions'
              description: >-
                Options for flexible, efficient, and explicit querying in Cosmos
                DB or similar repositories.
          application/*+json:
            schema:
              allOf:
                - $ref: '#/components/schemas/RequestDataOptions'
              description: >-
                Options for flexible, efficient, and explicit querying in Cosmos
                DB or similar repositories.
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/PagedResultOfDispositionResponse'
                description: >-
                  A generic container for paginated results returned to the
                  client.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    RequestDataOptions:
      type: object
      properties:
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: Maximum items to return in one page
          format: int32
        continuationToken:
          type: string
          description: >-
            Opaque Cosmos DB continuation token. ‑ on the **first** request. ‑
            Client must echo back the NextToken it received from the previous
            page.
          nullable: true
        orderBy:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/OrderByOption'
            description: An object for ordering during querying
          description: List of sort instructions, in priority order.
          nullable: true
        includeCount:
          type: boolean
          description: Whether to include the total count in the response (for pagination).
          nullable: true
        search:
          type: string
          description: The search term to filter results (applied to ).
          nullable: true
        searchFields:
          type: array
          items:
            type: string
          description: >-
            The list of fields to apply the Search term to (must be string
            properties).
          nullable: true
        filters:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/ExactMatchFilter'
            description: >-
              A generic object for handling exact match filtering during
              querying
          description: Key-value exact match filters (e.g., Status = Active).
          nullable: true
        rangeFilters:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/RangeFilter'
            description: A generic object for handling range filtering during querying
          description: Advanced range-based filters (e.g., Price > 50 and Price <= 200).
          nullable: true
      description: >-
        Options for flexible, efficient, and explicit querying in Cosmos DB or
        similar repositories.
    PagedResultOfDispositionResponse:
      type: object
      properties:
        items:
          type: array
          items:
            allOf:
              - $ref: '#/components/schemas/DispositionResponse'
            description: Response model for disposition data.
          description: The subset of items returned for the current page.
        pageSize:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: >-
            The number of items returned per page in the response. This may
            reflect the client's requested page size, or a server-defined
            default or limit.
          format: int32
        totalCount:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: >-
            The total number of items that match the query across all pages. May
            be null if the count is not computed or not applicable (e.g., in
            continuation-based pagination).
          format: int32
        continuationToken:
          type: string
          description: >-
            Opaque storage continuation token. ‑ `null` → the current page was
            the last page.
          nullable: true
      description: A generic container for paginated results returned to the client.
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          description: URI reference that identifies the problem type.
          nullable: true
        title:
          type: string
          description: Short, human-readable summary of the problem.
          nullable: true
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          description: HTTP status code returned for the problem.
          format: int32
        detail:
          type: string
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem.
          nullable: true
        instance:
          type: string
          description: >-
            URI reference that identifies this specific occurrence of the
            problem.
          nullable: true
    OrderByOption:
      type: object
      properties:
        field:
          type: string
          description: The field to sort by.
        direction:
          enum:
            - asc
            - desc
          type: string
          description: An enumerator for sort direction during querying
          nullable: true
      description: An object for ordering during querying
    ExactMatchFilter:
      type: object
      properties:
        value:
          description: The value that the field must match.
        field:
          type: string
          description: The field to filter by.
      description: A generic object for handling exact match filtering during querying
    RangeFilter:
      type: object
      properties:
        greaterThan:
          description: The exclusive lower bound for the field value.
        greaterThanOrEqual:
          description: The inclusive lower bound for the field value.
        lessThan:
          description: The exclusive upper bound for the field value.
        lessThanOrEqual:
          description: The inclusive upper bound for the field value.
        field:
          type: string
          description: The field to filter by.
      description: A generic object for handling range filtering during querying
    DispositionResponse:
      type: object
      properties:
        id:
          type: string
          description: The unique ID for this disposition.
        leadId:
          type: string
          description: The lead ID associated with this disposition.
        type:
          type: string
          description: The type classification for this disposition.
        outcome:
          type: string
          description: The outcome value for this disposition.
        category:
          enum:
            - Open
            - Qualified
            - Converted
            - Lost
            - Invalid
            - Duplicate
          type: string
          description: >-
            Controlled disposition categories used for reporting, automation,
            and analytics.
          nullable: true
        oldDispositionId:
          type: string
          description: >-
            Unique identifier of the old disposition associated with this
            Leadping disposition.
          nullable: true
        oldDispositionType:
          type: string
          description: Old disposition type classification for this Leadping disposition.
          nullable: true
        oldDispositionOutcome:
          type: string
          description: Old disposition outcome associated with this Leadping disposition.
          nullable: true
        newDispositionId:
          type: string
          description: >-
            Unique identifier of the new disposition associated with this
            Leadping disposition.
          nullable: true
        notes:
          type: string
          description: The operator or customer notes recorded for this disposition.
        reason:
          type: string
          description: The reason this disposition was changed.
          nullable: true
        changedByUserId:
          type: string
          description: Unique identifier of the Leadping user who made the change.
          nullable: true
        changedByAutomationId:
          type: string
          description: >-
            Unique identifier of the automation that changed the disposition,
            when applicable.
          nullable: true
        changedAt:
          type: string
          description: Date and time when the disposition change occurred.
          format: date-time
          nullable: true
        changeSource:
          enum:
            - User
            - AI
            - Automation
            - System
            - API
          type: string
          description: Known sources that can change a lead's current disposition.
          nullable: true
        timestamp:
          type: string
          description: The date and time for the timestamp value on this disposition.
          format: date-time
        createdAt:
          type: string
          description: The date and time for the created at value on this disposition.
          format: date-time
        updatedAt:
          type: string
          description: The date and time for the updated at value on this disposition.
          format: date-time
        followUpStatus:
          type: string
          description: The current follow up status for this disposition.
          nullable: true
        callbackAt:
          type: string
          description: The date and time for the callback at value on this disposition.
          format: date-time
          nullable: true
        taskDueAt:
          type: string
          description: The date and time for the task due at value on this disposition.
          format: date-time
          nullable: true
        appointmentStartAt:
          type: string
          description: >-
            The date and time for the appointment start at value on this
            disposition.
          format: date-time
          nullable: true
        appointmentEndAt:
          type: string
          description: >-
            The date and time for the appointment end at value on this
            disposition.
          format: date-time
          nullable: true
        appointmentNotes:
          type: string
          description: The appointment notes value for this disposition.
          nullable: true
        assignedToUserId:
          type: string
          description: The assigned to user ID associated with this disposition.
          nullable: true
        relatedCallEventId:
          type: string
          description: The related call event ID associated with this disposition.
          nullable: true
        isMissedCallFollowUp:
          type: boolean
          description: Whether this disposition is missed call follow up.
        sourceId:
          type: string
          description: The source ID associated with this disposition.
          nullable: true
      description: Response model for disposition data.

````