Retrieves all job priorities, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of job priorities.

job_priority
NameDescriptionTypeAdditional 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

Order in which this priority should be displayed relative to other priorities.

integer
is_default

Indicates this is the default priority pre-selected when creating a new job.

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "643e6ebd-0125-4698-873a-fca6e8e5db55",
  "name": "sample string 2",
  "sales_organization_id": "3ed03b97-a76b-4d05-a7f0-e69fafac5797",
  "icon": 0,
  "modified_dateutc": "2026-09-16T10:12:55.7111911+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>643e6ebd-0125-4698-873a-fca6e8e5db55</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T10:12:55.711Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>3ed03b97-a76b-4d05-a7f0-e69fafac5797</sales_organization_id>
  <sequence>5</sequence>
</job_priority>