Retrieves all the job_priority objects

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

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

integer
is_default

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "eb237fd7-2311-4783-a936-33168dde40e7",
  "name": "sample string 2",
  "sales_organization_id": "d1e302b7-f4a9-494b-9ebb-8c3a4ff021ad",
  "icon": 0,
  "modified_dateutc": "2026-01-11T21:02:11.4589329+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>eb237fd7-2311-4783-a936-33168dde40e7</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T21:02:11.458Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>d1e302b7-f4a9-494b-9ebb-8c3a4ff021ad</sales_organization_id>
  <sequence>5</sequence>
</job_priority>