PULSAR
API ReferenceWork Order Target

Get Work Order And Sku Targets

Get a single work order and SKU targets, identified by workOrderId.

Authorization

bearerAuth user, superuser, admin, superadmin, readonly
Authorization<token>

In: header

Scope: user, superuser, admin, superadmin, readonly

Path Parameters

workOrderId*string

The work order's ID.

Response Body

application/json

Try it live
GET
/work-order-target/{workOrderId}

This endpoint requires authentication — use the Login page at the top of the API Reference, or paste a token in the Authorization section below.

curl -X GET "https://example.com/work-order-target/string"
{  "targets": [    {      "sku": {        "updatedAt": "2019-08-24T14:15:22Z",        "createdAt": "2019-08-24T14:15:22Z",        "progress": 0.1,        "correct": 0.1,        "target": 0.1,        "unit": "string",        "description": "string",        "name": "string",        "sku": "string",        "id": "string"      },      "id": "string"    }  ],  "workOrderId": "string"}