Retrieves the task priority with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
task_priority.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 (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": "f962f161-d4e4-4d64-96d1-816e979ca0c9",
"name": "sample string 2",
"code": "sample string 3",
"is_default": true,
"sequence": 5,
"only_for_e_service": true,
"sales_organization_id": "386b7287-c990-4e20-a2d2-7d4c6f7a8d1c"
}
application/xml, text/xml
Sample:
<task_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <code>sample string 3</code> <id>f962f161-d4e4-4d64-96d1-816e979ca0c9</id> <is_default>true</is_default> <name>sample string 2</name> <only_for_e_service>true</only_for_e_service> <sales_organization_id>386b7287-c990-4e20-a2d2-7d4c6f7a8d1c</sales_organization_id> <sequence>5</sequence> </task_priority>