Retrieves the job_priority object with the specified key

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

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": "bfaba09e-ba07-47e0-a553-0b0f4df21ec4",
  "name": "sample string 2",
  "sales_organization_id": "ac4a81bc-ddc9-4af2-9be8-7ad8fd8d2151",
  "icon": 0,
  "modified_dateutc": "2026-01-11T23:53:35.3214118+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>bfaba09e-ba07-47e0-a553-0b0f4df21ec4</id>
  <is_default>true</is_default>
  <modified_dateutc>2026-01-11T23:53:35.321Z</modified_dateutc>
  <name>sample string 2</name>
  <sales_organization_id>ac4a81bc-ddc9-4af2-9be8-7ad8fd8d2151</sales_organization_id>
  <sequence>5</sequence>
</job_priority>