Retrieves all the job_priority objects
Request Information
URI Parameters :
None.
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
job_priority| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Primary Key |
globally unique identifier | |
| name |
Name of the priority |
string |
Required Max length: 50 |
| sales_organization_id |
FK of sales_organization. Filled if specific of one SO, empty if can be used by all |
globally unique identifier | |
| icon |
Priority icon |
job_priority_icon | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating |
date | |
| sequence | integer | ||
| is_default | boolean |
Response Formats
application/json, text/json
Sample:
{
"id": "319a4538-c1e8-4e57-8a3f-6e7551853835",
"name": "sample string 2",
"sales_organization_id": "372bcac9-6911-471f-9b32-a117fc671263",
"icon": 0,
"modified_dateutc": "2026-06-16T21:18:37.6726541+00:00",
"sequence": 5,
"is_default": true
}
application/xml, text/xml
Sample:
<job_priority xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <icon>dark_red</icon> <id>319a4538-c1e8-4e57-8a3f-6e7551853835</id> <is_default>true</is_default> <modified_dateutc>2026-06-16T21:18:37.672Z</modified_dateutc> <name>sample string 2</name> <sales_organization_id>372bcac9-6911-471f-9b32-a117fc671263</sales_organization_id> <sequence>5</sequence> </job_priority>