Skip to main content
POST
/
case-managers
/
confirm
Confirm case manager assignment
curl --request POST \
  --url https://roster.platform.arb.inc/case-managers/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reservationID": "2720f109-0caf-4c62-af22-5d08c853711c"
}
'
"reservation successfully confirmed"

Authorizations

Authorization
string
header
required

access token

Body

application/json
reservationID
string<uuid>
required

Unique identifier of the reservation to confirm

Example:

"2720f109-0caf-4c62-af22-5d08c853711c"

Response

Successfully confirmed the reservation

The response is of type string.

Example:

"reservation successfully confirmed"