# Fetch role

Returns the role with the matching ID.

Endpoint: GET /roles/{role_id}
Version: v1
Security: AuthToken

## Path parameters:

  - `role_id` (integer, required)
    The ID of the role.

## Response 200 fields (application/json):

  - `id` (integer, required)
    Unique identifier for the role.
    Example: 1

  - `value` (string, required)
    The name of the role.
    Example: "Senior"

## Response 404 fields (application/json):

  - `message` (string)
    Example: "not found"


