Operative Process (Operations)
Get operative processes.
Get all operative processes
facility to filter the results
entity to start after
number of entities to show
25Example: 25All operative processes matching the given parameters
OperativeProcessPaginatedResult
Invalid input. See response for details.
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
The requested entity was not found
GET /api/operativeprocesses?facilityId=text HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"operativeProcesses": [
{
"created": "2026-01-01T00:00:00.000Z",
"entityChildren": [
{
"entityChildren": [
"[Circular Reference]"
],
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": "PICK_JOB"
}
],
"facilityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"flatEntityRefs": [
"0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"0190d6e8-9a1b-7c2d-8e3f-5a7b9c1d3e5f"
],
"id": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"isEditable": true,
"lastModified": "2026-01-01T00:00:00.000Z",
"processRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"routingPlanRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"version": 1
}
],
"pageInfo": {
"endCursor": "text",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "text"
},
"total": 1
}Get the operative processes for a specific id
Found operativeProcess by given ID
OperativeProcess
The timestamp when the operative process was created.
Reference to the facility this operative process is associated with.
0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2fEntities involved in this operative process represented as a flat list of entity references.
["0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f","0190d6e8-9a1b-7c2d-8e3f-5a7b9c1d3e5f"]auto generated unique identifier
0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2fThis field indicates if the operative process is editable based on if any of the related pick jobs, service jobs, pack jobs or handover jobs are in progress or have been finished successfully. This field is calculated dynamically on each request.
The timestamp when the operative process was last modified.
Reference to the process this operative process is associated with.
0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2fReference to the routing plan this operative process is associated with.
0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2fThe version number of the operative process. This number is incremented each time the operative process is modified.
1Invalid input. See response for details.
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
The requested entity was not found
GET /api/operativeprocesses/{operativeProcessId} HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"created": "2026-01-01T00:00:00.000Z",
"entityChildren": [
{
"entityChildren": [
{
"entityChildren": [
"[Circular Reference]"
],
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": "PICK_JOB"
}
],
"entityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"entityType": "PICK_JOB"
}
],
"facilityRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"flatEntityRefs": [
"0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"0190d6e8-9a1b-7c2d-8e3f-5a7b9c1d3e5f"
],
"id": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"isEditable": true,
"lastModified": "2026-01-01T00:00:00.000Z",
"processRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"routingPlanRef": "0190d6e8-8c3a-7f1b-9d2e-4a6b8c0d1e2f",
"version": 1
}This part of the API is in Alpha status. For details, see the API release lifecycle documentation. Perform action for the given operative process
OperativeProcess after action has been applied
AvailableOperativeProcessActions
Invalid input. See response for details.
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
The requested entity was not found
A version conflict occurred.
POST /api/operativeprocesses/{operativeProcessId}/actions HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 124
{
"name": "ADD_TARGET_TIME_TO_OPERATIVE_PROCESS_ENTITIES",
"operativeProcessVersion": 1,
"targetTime": "2020-02-03T09:45:51.525Z"
}{
"actions": [
{
"available": true,
"denyReasons": [
{
"errorCode": "PICKING_STARTED",
"message": "text"
}
],
"name": "REJECT_OPERATIVE_PROCESS"
}
]
}This part of the API is in Alpha status. For details, see the API release lifecycle documentation. Get all available actions for a specific operative process
Available actions for the given operative process
AvailableOperativeProcessActions
Invalid input. See response for details.
Your user is not allowed to operate against this API instance
Your user, although recognized, is not authorized to use this endpoint
The requested entity was not found
GET /api/operativeprocesses/{operativeProcessId}/availableactions HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"actions": [
{
"available": true,
"denyReasons": [
{
"errorCode": "PICKING_STARTED",
"message": "text"
}
],
"name": "REJECT_OPERATIVE_PROCESS"
}
]
}Last updated
Was this helpful?

