Retrieves the task status with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

task_status
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the task status (Created,Closed)

string

Required

Max length: 255

is_default

Auto selected when creating a new task

boolean
is_closed

Set this task_status as a CLOSED status (task will be archived)

boolean
sales_organization_id

FK of sales_organization. Filled if specific of one SO, empty if can be used by all

globally unique identifier
color_hexadecimal_value

can be 112233 or #112233

string
archived

archived?

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
percentage

integer

Response Formats

application/json, text/json

Sample:
{
  "id": "d13f2481-fc39-46b7-adc9-f99bc1f104fb",
  "name": "sample string 2",
  "is_default": true,
  "is_closed": true,
  "sales_organization_id": "8d8ea142-6b41-4f74-9f5a-faccc640a359",
  "color_hexadecimal_value": "sample string 6",
  "archived": true,
  "modified_dateutc": "2026-01-11T20:58:16.2400768+00:00",
  "percentage": 9
}

application/xml, text/xml

Sample:
<task_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <color_hexadecimal_value>sample string 6</color_hexadecimal_value>
  <id>d13f2481-fc39-46b7-adc9-f99bc1f104fb</id>
  <is_closed>true</is_closed>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T20:58:16.240Z</modified_dateutc>
  <name>sample string 2</name>
  <percentage>9</percentage>
  <sales_organization_id>8d8ea142-6b41-4f74-9f5a-faccc640a359</sales_organization_id>
</task_status>