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": "cefdaaa3-9377-4d9b-9706-8834868f50fb",
  "name": "sample string 2",
  "sequence": 3,
  "color_text": "sample string 4",
  "system_job_status_id": "6b9b7339-2142-4ac5-9247-974498ffb495",
  "modified_dateutc": "2026-06-16T22:29:37.1191962+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>cefdaaa3-9377-4d9b-9706-8834868f50fb</id>
  <is_isolated_workflow>true</is_isolated_workflow>
  <modified_dateutc>2026-06-16T22:29:37.119Z</modified_dateutc>
  <name>sample string 2</name>
  <sequence>3</sequence>
  <system_job_status_id>6b9b7339-2142-4ac5-9247-974498ffb495</system_job_status_id>
</job_status>