Retrieves the task priority with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
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": "0ca77aca-018c-43f3-a095-4e30ebae31b1",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "0cc8b749-6f0c-425e-9f06-f7a45ab2a21d",
"task_priority_icon": "sample string 6",
"only_for_e_service": true,
"modified_dateutc": "2026-01-11T21:02:13.9465659+00:00"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>0ca77aca-018c-43f3-a095-4e30ebae31b1</id> <is_default>true</is_default> <modified_dateutc>2026-01-11T21:02:13.946Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>0cc8b749-6f0c-425e-9f06-f7a45ab2a21d</sales_organization_id> <sequence>4</sequence> <task_priority_icon>sample string 6</task_priority_icon> </task_priority>