GET
/
v3
/
orgs
/
{orgId}
/
governance
/
schemes
/
{schemeId}
/
work-orders
/
{workOrderId}
curl --request GET \
  --url https://api.ctrl-hub.com/v3/orgs/{orgId}/governance/schemes/{schemeId}/work-orders/{workOrderId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "type": "work-orders",
    "id": "5852cf16-8ec8-4aba-809e-f8d828772c4e",
    "attributes": {
      "name": "IMGA100000",
      "code": "CODE001",
      "description": "DESC-123456",
      "status": "active",
      "start_date": "2024-06-13T00:00:00.000Z",
      "end_date": "2024-08-13T00:00:00.000Z",
      "uprns": [
        10022999531
      ],
      "usrns": [
        14924880
      ],
      "labels": [
        {
          "key": "your-label",
          "value": "abc123"
        },
        {
          "key": "another-label",
          "value": "meaningful-value"
        }
      ]
    },
    "meta": {
      "created_at": "2024-06-13T07:15:23.000Z"
    },
    "links": {
      "self": "https://api.ctrl-hub.com/v3/governance/schemes/5852cf16-8ec8-4aba-809e-f8d828772c4e/work-orders/5852cf16-8ec8-4aba-809e-f8d828772c4e"
    }
  }
}

Authorizations

Authorization
string
header
required

To understand how to authenticate, see the auth docs

Path Parameters

orgId
string
required

The ID of the organisation

Example:

"cc9746e0-9286-4575-ae0b-ac1b0fe873a6"

schemeId
string
required

The ID of the scheme

Example:

"5852cf16-8ec8-4aba-809e-f8d828772c4e"

workOrderId
string
required

The ID of the work order

Example:

"5852cf16-8ec8-4aba-809e-f8d828772c4e"

Response

200
application/json
data
object