> ## 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 Debtor Status

> Retrieve the current status of a specific debtor



## OpenAPI

````yaml GET /debtorStatus/{debtorId}
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:
  /debtorStatus/{debtorId}:
    get:
      summary: Get debtor status
      description: Retrieve the current status of a specific debtor
      parameters:
        - name: debtorId
          in: path
          required: true
          description: Unique identifier of the debtor
          schema:
            type: string
      responses:
        '200':
          description: Debtor status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DebtorStatus'
        '404':
          description: Debtor not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    DebtorStatus:
      type: object
      properties:
        debtorId:
          type: string
          description: Unique identifier of the debtor
        status:
          type: string
          description: Current status of the debtor
          enum:
            - Potential
            - Subscription
            - Partial
            - Paid
            - Deleted
            - Paid Creditor Directly
            - Deceased
            - Filed Bankruptcy
      required:
        - debtorId
        - status
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          format: int32
          description: Error code
        message:
          type: string
          description: Error message
      example:
        code: 400
        message: 'Invalid input: debtorName is required'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: collectwise_key

````