Skip to main content
GET
/
api
/
task-statuses
/
{id}
Get TaskStatus by ID
curl --request GET \
  --url https://platform.kodexa.ai/api/task-statuses/{id} \
  --header 'x-api-key: <api-key>'
{
  "changeSequence": 123,
  "color": "<string>",
  "createdOn": "2023-11-07T05:31:56Z",
  "deprecated": true,
  "extensionPackRef": "<string>",
  "icon": "<string>",
  "id": "<string>",
  "label": "<string>",
  "locked": true,
  "metadata": {},
  "name": "<string>",
  "organizationId": "<string>",
  "publicAccess": true,
  "sequence": 123,
  "slug": "<string>",
  "statusType": "OPEN",
  "template": true,
  "type": "<string>",
  "updatedOn": "2023-11-07T05:31:56Z",
  "uuid": "<string>",
  "yamlSource": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.kodexa.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.

Path Parameters

id
string<uuid>
required

Unique identifier (UUID) of the resource.

Response

The TaskStatus

A task status defines a named state for tracking task workflow progress.

changeSequence
integer<int32>
color
string
createdOn
string<date-time>
deprecated
boolean
extensionPackRef
string
icon
string
id
string
label
string
locked
boolean | null
metadata
object
name
string
organizationId
string
publicAccess
boolean
sequence
integer<int32>
slug
string
statusType
enum<string>
Available options:
OPEN,
IN_PROGRESS,
DONE,
BLOCKED
template
boolean
type
string
updatedOn
string<date-time>
uuid
string
yamlSource
string | null