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

# List client contact statuses

> Returns all client contact statuses for the organization, ordered by stage_order. No pagination — the full list is always returned.

**When to use**: Call this to discover available status IDs for `client_contact_status_id` when updating client contacts via PATCH /v1/client-contacts/:id.



## OpenAPI

````yaml /api-reference/openapi-v1.json get /v1/client-contacts/statuses
openapi: 3.1.0
info:
  title: Stardex API (v1)
  version: 1.0.0
  description: >-
    Stardex ATS API — manage candidates, jobs, companies, and recruiting
    workflows.
servers:
  - url: https://api.stardex.ai
    description: Production API server
security:
  - bearerAuth: []
tags:
  - name: Persons
    description: Manage person records — contacts, work history, and custom fields.
  - name: Jobs
    description: Manage job postings — pipeline stages, team members, and custom fields.
  - name: Candidates
    description: Manage candidate records and pipeline stage transitions.
  - name: Companies
    description: Browse and retrieve company records.
  - name: Lists
    description: Create, search, and retrieve saved person and company lists.
  - name: Person Activities
    description: Create and manage activity records (notes, emails, meetings) for persons.
  - name: Team Members
    description: List team members for use in search filters and assignments.
  - name: Custom Fields
    description: Retrieve custom field definitions and tag options for search filters.
paths:
  /v1/client-contacts/statuses:
    get:
      tags:
        - Client Contacts
      summary: List client contact statuses
      description: >-
        Returns all client contact statuses for the organization, ordered by
        stage_order. No pagination — the full list is always returned.


        **When to use**: Call this to discover available status IDs for
        `client_contact_status_id` when updating client contacts via PATCH
        /v1/client-contacts/:id.
      operationId: listClientContactStatuses
      responses:
        '200':
          description: Client contact statuses fetched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientContactStatusesListResponse'
              example:
                success: true
                data:
                  - id: 890e1234-f56a-78b9-c012-345678901234
                    name: Active
                    color: '#3b82f6'
                    stage_order: 1
                    is_default_status: true
                  - id: 901f2345-a67b-89c0-d123-456789012345
                    name: Churned
                    color: '#ef4444'
                    stage_order: 2
                    is_default_status: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                    description: Always false for error responses.
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        description: >-
                          Machine-readable error code (e.g. "VALIDATION_ERROR",
                          "NOT_FOUND").
                      message:
                        type: string
                        description: Human-readable error description.
                    required:
                      - code
                      - message
                required:
                  - success
                  - error
components:
  schemas:
    ClientContactStatusesListResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: array
          items:
            $ref: '#/components/schemas/ClientContactStatusItem'
      required:
        - success
        - data
    ClientContactStatusItem:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Client contact status UUID.
        name:
          type: string
          description: Status label for client contacts (e.g. "Active", "Churned").
        color:
          type:
            - string
            - 'null'
          description: Hex color code.
        stage_order:
          type:
            - number
            - 'null'
          description: Display order within the contact status pipeline.
        is_default_status:
          type: boolean
          description: Whether this is the default status for new client contacts.
      required:
        - id
        - name
        - color
        - stage_order
        - is_default_status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Authenticate with a Bearer token: API key, OAuth token, or session
        token.

````