This endpoint cancels an order for one or more prescriptions.
The request body should include the clinicId and an array of prescriptionIds to be cancelled.
Example use case: Cancel prescriptions that were previously created and not yet filled.
The endpoint expects the following JSON format:
{
"items": [
{
"clinicId": "string",
"prescriptionIds": ["string"]
}
]
}