PULSAR
API ReferenceWork Orders

Get Work Order Progress

Get a single work order progress, identified by id.

Authorization

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

In: header

Scope: user, superuser, admin, superadmin, readonly

Path Parameters

id*string

The ID.

Response Body

application/json

Try it live
GET
/work-orders/progress/{id}

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-orders/progress/string"
{  "progress": [    {      "pending": 0.1,      "target": 0.1,      "defects": 0.1,      "correct": 0.1,      "name": "string",      "sku": "string"    }  ],  "status": "Backlog",  "code": "string",  "name": "string",  "id": "string"}