# Get Task Statuses

GET /

#### Description

Retrieves all task statuses defined within an organization, including their names, descriptions, and usage details.

Endpoint: GET /
Version: 1.0
Security: oauth2

## Response 200 fields (application/json):

  - `id` (string)
    The unique identifier for the task status.
    Example: "ba50096d-bbfa-47af-94a7-092b0984cf35"

  - `orgId` (string)
    The unique identifier for the organization.
    Example: "4c05da3f-f076-461c-8105-80a07a42ab7f"

  - `name` (string)
    The user-facing label of the task status.
    Example: "Closed"

  - `type` (string)
    The type of the task status.
    Enum: "notStarted", "inProgress", "submitted", "closed", "cancelled"

  - `sortOrder` (integer)
    The order in which the task status appears in lists.
    Example: 4


