Retrieves the job priority with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The job priority id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the job priority, or 404 Not Found if it doesn't exist.

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": "2906d9f0-d877-4f1d-aa51-a175389dc681",
  "name": "sample string 2",
  "sales_organization_id": "0b58cb9d-7bef-402a-83b9-2bd997a0d7e4",
  "icon": 0,
  "modified_dateutc": "2026-09-16T10:16:02.8628816+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>2906d9f0-d877-4f1d-aa51-a175389dc681</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-09-16T10:16:02.862Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>0b58cb9d-7bef-402a-83b9-2bd997a0d7e4</sales_organization_id>
  <sequence>5</sequence>
</job_priority>