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

# Get Text Status

> Returns delivery status for a previously sent message. `messageId` is the value returned by the send endpoint. Delivery reports arrive asynchronously from the carrier, so poll after a short delay.



## OpenAPI

````yaml GET /text/status/{messageId}
openapi: 3.0.1
info:
  title: CollectWise API
  description: >-
    An API for managing debtors, tracking statuses, and automating debt
    collection processes
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://collectwiseapi.com
security:
  - apiKey: []
paths:
  /text/status/{messageId}:
    get:
      summary: Get text delivery status
      description: >-
        Returns delivery status for a previously sent message. `messageId` is
        the value returned by the send endpoint. Delivery reports arrive
        asynchronously from the carrier, so poll after a short delay.
      parameters:
        - name: messageId
          in: path
          required: true
          schema:
            type: string
          description: The messageId returned by the send endpoint.
      responses:
        '200':
          description: Current delivery status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MessageStatus'
              example:
                messageId: 1b1f0a9e-6f4e-4f4b-9a2e-1f2d3c4b5a69
                status: Delivered
                delivered: true
                failed: false
                failureClassification: null
                retryRecommended: false
                createdAt: '2026-06-12T18:21:09.000Z'
                updatedAt: '2026-06-12T18:21:14.000Z'
        '404':
          description: No message with that id for your organization.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TextError'
              example:
                error: Message not found
        '429':
          description: Rate limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TextError'
              example:
                error: Too many requests
components:
  schemas:
    MessageStatus:
      type: object
      required:
        - messageId
        - status
        - delivered
        - failed
      properties:
        messageId:
          type: string
        status:
          type: string
          description: >-
            Carrier status: Queued, Sent, Delivered, or Rejected / Failed /
            Undelivered on failure.
        delivered:
          type: boolean
        failed:
          type: boolean
        failureClassification:
          type: string
          nullable: true
          enum:
            - FATAL
            - NON_FATAL
          description: >-
            On failed messages: FATAL (do not retry), NON_FATAL (transient,
            retry may succeed), or null when the carrier reason is unrecognized.
        retryRecommended:
          type: boolean
          description: True when the failure is NON_FATAL and a retry may succeed.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    TextError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
      example:
        error: Texting is not enabled for this organization
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: collectwise_key

````