> ## Documentation Index
> Fetch the complete documentation index at: https://docs.platform.arb.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# Confirm arbitrator assignment

> Confirms a previously reserved arbitrator assignment, making it permanent. This endpoint transitions a temporary reservation into a confirmed assignment that will not expire. Requires `roster.arbitrators.assigner` permission.



## OpenAPI

````yaml api-reference/roster.yaml post /arbitrators/confirm
openapi: 3.0.3
info:
  title: roster
  description: >-
    The Roster service keeps a list of all available arbitrators and case
    managers. Other parts of the system use it to pick the right people for new
    cases.
  version: 1.0.0
servers:
  - url: https://roster.platform.arb.inc
security: []
tags:
  - name: /
  - name: arbitrators
  - name: case-managers
paths:
  /arbitrators/confirm:
    post:
      tags:
        - arbitrators
      summary: Confirm arbitrator assignment
      description: >-
        Confirms a previously reserved arbitrator assignment, making it
        permanent. This endpoint transitions a temporary reservation into a
        confirmed assignment that will not expire. Requires
        `roster.arbitrators.assigner` permission.
      operationId: confirmArbitratorReservation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - reservationID
              properties:
                reservationID:
                  type: string
                  format: uuid
                  description: Unique identifier of the reservation to confirm
                  example: 2720f109-0caf-4c62-af22-5d08c853711c
      responses:
        '200':
          description: Successfully confirmed the reservation
          content:
            text/plain:
              schema:
                type: string
                example: reservation successfully confirmed
        '404':
          description: Reservation not found
          content:
            text/plain:
              schema:
                type: string
                example: reservation not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````