Retrieves the job status 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 | |
| code |
Status code |
string | |
| name |
Status name |
string | |
| sequence |
Status order |
integer | |
| color_text |
Status color |
string | |
| archived |
Status archived? |
boolean | |
| modified_dateutc |
Readonly system field managed by database, filled with GetUtcDate when adding,updating. |
date |
Response Formats
application/json, text/json
Sample:
{
"id": "cb5652b6-43db-46a2-8202-2e93e7c28c04",
"code": "sample string 2",
"name": "sample string 3",
"sequence": 4,
"color_text": "sample string 5",
"archived": true,
"modified_dateutc": "2025-11-10T19:59:49.5154977+00:00"
}