PULSAR
API ReferenceWork Orders

Create Work Order Full Production

Create a new work order full production.

Authorization

bearerAuth
Authorization<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

Try it live
POST
/work-orders/production-full

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 POST "https://example.com/work-orders/production-full" \  -H "Content-Type: application/json" \  -d '{    "machines": [      {        "machineId": 0.1      }    ],    "targets": [      {        "targetQuantity": 0.1,        "skuId": "string"      }    ],    "workOrder": {      "estimatedDeliveryTime": "2019-08-24T14:15:22Z",      "priority": 0.1,      "source": "string",      "status": "Backlog",      "name": "string",      "code": "string"    }  }'
{}