Retrieves all work order types

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult

job_status
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of the job status

string
sequence

integer
color_text

string
system_job_status_id

globally unique identifier
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date
archived

archived flag

boolean
is_isolated_workflow

boolean

Response Formats

application/json, text/json

Sample:
{
  "id": "95a28a62-1539-4e22-a7fe-112d0a255731",
  "name": "sample string 2",
  "sequence": 3,
  "color_text": "sample string 4",
  "system_job_status_id": "9dfe6795-af68-448e-9d3f-2534e1ed3b56",
  "modified_dateutc": "2026-01-11T23:48:13.0246599+00:00",
  "archived": true,
  "is_isolated_workflow": true
}

application/xml, text/xml

Sample:
<job_status xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <color_text>sample string 4</color_text>
  <id>95a28a62-1539-4e22-a7fe-112d0a255731</id>
  <is_isolated_workflow>true</is_isolated_workflow>
  <modified_dateutc>2026-01-11T23:48:13.024Z</modified_dateutc>
  <name>sample string 2</name>
  <sequence>3</sequence>
  <system_job_status_id>9dfe6795-af68-448e-9d3f-2534e1ed3b56</system_job_status_id>
</job_status>