Retrieves all task priorities
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
task_priority| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name of the task priority (High,Medium) |
string |
Required Max length: 255 |
| is_default |
Auto selected when creating a new task |
boolean | |
| sequence |
Sorting field (0 first), to order them |
integer | |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all |
globally unique identifier | |
| task_priority_icon | string | ||
| only_for_e_service | boolean | ||
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "173d3523-3745-40a5-a144-86c502ad9378",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "621e0ce3-7a34-4e2a-b096-d91c8669a659",
"task_priority_icon": "sample string 6",
"only_for_e_service": true,
"modified_dateutc": "2026-01-11T20:58:24.151102+00:00"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>173d3523-3745-40a5-a144-86c502ad9378</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T20:58:24.151Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>621e0ce3-7a34-4e2a-b096-d91c8669a659</sales_organization_id> <sequence>4</sequence> <task_priority_icon>sample string 6</task_priority_icon> </task_priority>