Skip to main content
POST
/
arbitrators
/
confirm
Confirm an arbitrator reservation
curl --request POST \
  --url https://roster.platform.arb.inc/arbitrators/confirm \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reservationID": "c17c3433-81b3-4096-90e0-9fbb32c06204"
}
'
"reservation successfully confirmed"

Authorizations

Authorization
string
header
required

access token

Body

application/json
reservationID
string<uuid>
required

The reservation ID to confirm.

Example:

"c17c3433-81b3-4096-90e0-9fbb32c06204"

Response

Reservation successfully confirmed.

The response is of type string.

Example:

"reservation successfully confirmed"