Patch Milestone Due Date (Batch)
Description
This endpoint allows you to update the due date of the order milestones. This API allows an array of milestone due date update objects.
The id from the output of /cv/root-causes can be used to populate the rootCause field in the request body.
Request parameters
{
"items": [
{
"id": "a0xxxxxxXXXXX",
"expectedDueDate": "2024-05-21T19:40:02.000Z",
"rootCause": "Vendor Capacity",
"reason": "example"
}
]
}
Responses
[
{
"orderMilestone": {
"id": "a08xxxxxxXXXXX"
}
},
{
"orderMilestone": {
"id": "a08xxxxxxYYYYY"
},
"error": [
{
"code": 403,
"message": "Forbidden"
}
]
},
{
"orderMilestone": {
"id": "a08xxxxxxZZZZZ"
},
"issues": [
{
"id": "a09xxxxxxXXXXX"
}
]
}
]
03 July 2025