curl --request PUT \
--url https://api.bold-factory.com/v1/production/plans/{planReference} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"operations": [
{
"operationId": "<string>",
"locked": true,
"resourceRequirements": [
{
"id": "<string>",
"selectedResourceId": "<string>"
}
],
"startsAt": "2023-11-07T05:31:56Z",
"earliestPossibleStart": "2023-11-07T05:31:56Z"
}
]
}
'