Retrieves all task priorities available for ServiceDesk
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 (Translated) (High,Medium) |
string |
Required Max length: 255 |
| code |
Field used for Embedded entity (store there your ERP PK) |
string |
Max length: 255 |
| is_default |
Auto selected when creating a new task |
boolean | |
| sequence |
Sorting field (0 first), to order them |
integer | |
| only_for_e_service |
Specify his this task priority is only usable on the e-service |
boolean | |
| sales_organization_id |
Specify his this task priority is global (=GuidEmpty) or specific for one organization |
globally unique identifier |
Response Formats
application/json, text/json
Sample:
{
"id": "48832ca8-5cb3-442f-9f8d-501fa26c7332",
"name": "sample string 2",
"code": "sample string 3",
"is_default": true,
"sequence": 5,
"only_for_e_service": true,
"sales_organization_id": "1a2e8909-b792-4392-9533-e5b42fb1c4cc"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 3</code> <id>48832ca8-5cb3-442f-9f8d-501fa26c7332</id> <is_default>true</is_default> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>1a2e8909-b792-4392-9533-e5b42fb1c4cc</sales_organization_id> <sequence>5</sequence> </task_priority>