Retrieves all task status
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
task_status| Name | Description | Type | Additional 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": "7aeacae4-4cb2-4f1a-8ac2-9585ad9ad23c",
"name": "sample string 2",
"is_default": true,
"is_closed": true,
"sales_organization_id": "73d05670-46e8-4756-a8e7-d9358c96847e",
"color_hexadecimal_value": "sample string 6",
"archived": true,
"modified_dateutc": "2026-01-11T20:58:51.1684755+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>7aeacae4-4cb2-4f1a-8ac2-9585ad9ad23c</id> <is_closed>true</is_closed> <is_default>true</is_default> <modified_dateutc>2026-01-11T20:58:51.168Z</modified_dateutc> <name>sample string 2</name> <percentage>9</percentage> <sales_organization_id>73d05670-46e8-4756-a8e7-d9358c96847e</sales_organization_id> </task_status>