Retrieves the work order type with the specified key
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult
job_status| Name | Description | Type | Additional 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": "8de81acc-87da-4493-8552-aa7fa8570380",
"name": "sample string 2",
"sequence": 3,
"color_text": "sample string 4",
"system_job_status_id": "246bb6b8-2bb7-42a1-9f68-fc167a70b558",
"modified_dateutc": "2026-01-11T21:01:37.9606705+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>8de81acc-87da-4493-8552-aa7fa8570380</id> <is_isolated_workflow>true</is_isolated_workflow> <modified_dateutc>2026-01-11T21:01:37.960Z</modified_dateutc> <name>sample string 2</name> <sequence>3</sequence> <system_job_status_id>246bb6b8-2bb7-42a1-9f68-fc167a70b558</system_job_status_id> </job_status>