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

# Get Task Statuses

> Returns all custom task statuses for the authenticated business. These are business-defined status labels (title and color), not the built-in task `statusCase` values (`open` / `standby` / `completed`).

Returns the custom task status definitions configured for your business (title and color).

This is different from a task's `statusCase` (`open` / `standby` / `completed`, or a custom status ID from this list).


## OpenAPI

````yaml GET /tasks/statuses
openapi: 3.1.0
info:
  title: Pingmee API
  description: A complete guide to Pingmee micro service architecture.
  version: 1.0.0
servers:
  - url: https://api.pingmee.co.il
security:
  - cookieAuth: []
    ApiKeyAuth: []
paths:
  /tasks/statuses:
    servers:
      - url: https://business.pingmee.co.il
        description: Business service
    get:
      summary: Get task statuses
      description: >-
        Returns all custom task statuses for the authenticated business. These
        are business-defined status labels (title and color), not the built-in
        task `statusCase` values (`open` / `standby` / `completed`).
      responses:
        '200':
          description: Task statuses
          content:
            application/json:
              schema:
                type: object
                properties:
                  statuses:
                    type: array
                    items:
                      $ref: '#/components/schemas/TaskStatusDefinition'
                additionalProperties: false
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TaskStatusDefinition:
      type: object
      required:
        - id
        - title
        - color
        - associatedTo
      properties:
        id:
          type: string
          description: Unique identifier of the status. Can be used as a task `statusCase`.
        title:
          type: string
          description: Human-readable status title
        color:
          type: string
          description: Status color (hex, rgb, or named color)
        associatedTo:
          type: string
          description: Business or account the status is associated with
        isSelected:
          type: boolean
          description: Whether this status is selected in the UI
      additionalProperties: false
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: header
      name: Cookie
      description: Personal access token from Pingmee Settings → Developer Tools
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Business API key from Pingmee Settings → Developer Tools

````