Retrieves the task priority with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The task priority id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the task priority, or 404 Not Found if it doesn't exist.
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 |
Icon identifier used to render this priority in the UI. |
string | |
| only_for_e_service |
Indicates this priority is reserved for tasks created via the e-Service portal. |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "a701200a-f143-4410-a483-5ea77ee5b033",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "f4b05367-d3ee-4df1-b7ff-9e54a62a2013",
"task_priority_icon": "sample string 6",
"only_for_e_service": true,
"modified_dateutc": "2026-09-16T08:34:56.6909001+00:00"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>a701200a-f143-4410-a483-5ea77ee5b033</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T08:34:56.690Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>f4b05367-d3ee-4df1-b7ff-9e54a62a2013</sales_organization_id> <sequence>4</sequence> <task_priority_icon>sample string 6</task_priority_icon> </task_priority>