Retrieves all task priorities, optionally filtered via OData query options.
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the list of task priorities.
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": "e514f29b-fc51-4d3b-ab7b-96b87fa37830",
"name": "sample string 2",
"is_default": true,
"sequence": 4,
"sales_organization_id": "7a2862c3-1faa-4e1d-a6d2-5a749cf6e6d5",
"task_priority_icon": "sample string 6",
"only_for_e_service": true,
"modified_dateutc": "2026-09-16T08:33:16.098983+00:00"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <id>e514f29b-fc51-4d3b-ab7b-96b87fa37830</id> <is_default>true</is_default> <modified_dateutc>2026-09-16T08:33:16.098Z</modified_dateutc> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>7a2862c3-1faa-4e1d-a6d2-5a749cf6e6d5</sales_organization_id> <sequence>4</sequence> <task_priority_icon>sample string 6</task_priority_icon> </task_priority>