# Fetch discipline

Returns the discipline with the matching ID.

Endpoint: GET /disciplines/{discipline_id}
Version: v1
Security: AuthToken

## Path parameters:

  - `discipline_id` (integer, required)
    The ID of the discipline.

## Response 200 fields (application/json):

  - `discipline_id` (integer)
    Unique identifier for the discipline.
    Example: 1

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

## Response 404 fields (application/json):

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


