GET v1/jobs-queue/statuses

Returns a list of all possible job statuses. Note these objects are read-only and have no corresponding setters (POST / PUT) methods

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of QueueJobStatus
NameDescriptionTypeAdditional information
id

The status UUID

string

None.

internalName

The status humanly readable identifier

string

None.

name

Job status display name.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "internalName": "sample string 2",
    "name": "sample string 3"
  },
  {
    "id": "sample string 1",
    "internalName": "sample string 2",
    "name": "sample string 3"
  }
]