This API provides backend services for the Augmented Decision Making application, focusing on the efficient scheduling and assignment of tasks Operations to a given Resources.
The system models the following key entities:
The API enables users and automated systems to:
/agent/ endpoint) using natural language to query the schedule, identify conflicts, request moves, or trigger conflict resolution processes. The agent utilizes specialized tools to interact with the system's state.https://api.acc.adm.wearetransformers.nl/
https://api.acc.adm.wearetransformers.nl/v1/operations/tasks/bulk/
curl -i -X PATCH \
'https://api.acc.adm.wearetransformers.nl/v1/operations/tasks/bulk/?end_timestamp=0&start_timestamp=0&version=first' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"operations": [
{
"operationId": "string",
"inboundTask": {
"plannedTime": "string",
"expectedTime": "string",
"sigma": null,
"skewFactor": 0,
"distributionMean": "string",
"actualTime": "string"
},
"outboundTask": {
"plannedTime": "string",
"expectedTime": "string",
"sigma": null,
"skewFactor": 0,
"distributionMean": "string",
"actualTime": "string"
}
}
]
}'[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "externalId": "string", "inboundTask": { … }, "outboundTask": { … }, "metadata": { … }, "operationName": "string", "isFixedToResource": true, "tags": [ … ], "requiredTags": [ … ], "planning": "2d429708-7857-4300-9552-6e473ce0d566", "description": "string", "operationDependencies": [ … ], "group": "fbd899a6-8a66-4f51-a95d-68668de198ae" } ]