v1
latestOpenAPI 3.1.02026-08-063776831.4 MBFacilityCredentialingWorkflow
Change status of multiple facility credentialing workflows
Creates timeline events for multiple facility credentialing workflows in a single operation. This allows changing the status of multiple workflows at once. Each workflow is processed independently, and the response includes both successful and failed operations.
post/facility-credentialing-workflows/timeline-events
Headers
tenant-idstring required
Tenant ID
Request body
Example request
{
"workflowIds": [
"a2b4f213-f56e-49b7-9ffe-070ff70f0539",
"b3c5f324-f67e-49b8-0aff-181ff81f1640"
],
"timelineEventData": {
"credentialingDecisionDate": "2022-03-10",
"nextCredentialingDate": "2022-03-10"
},
"filter": "{\"data.credentialingStatus\":{\"eq\":\"PENDING\"}}"
}Response
Bulk status change operation completed. Check successful and failed arrays for details.
Example response
{
"successful": [
{
"workflowId": "a2b4f213-f56e-49b7-9ffe-070ff70f0539"
}
],
"failed": [
{
"workflowId": "a2b4f213-f56e-49b7-9ffe-070ff70f0539"
}
],
"totalCount": 5,
"successCount": 4,
"failureCount": 1
}