# Read a job title

Returns one role with its description and the training assigned to whoever takes it
on. `relations.functional_area` carries the parent group in full, so a separate call
is not needed to see which group the role belongs to.
The role must belong to the functional area named in the URL; asking for one under
a different group is not found.

Endpoint: GET /api/v2/headcount/functionalarea/{functionalarea_id}/jobtitle/{id}
Version: 2.0.0
Security: default

## Path parameters:

  - `functionalarea_id` (integer, required)
    The ID of the functional area.

  - `id` (integer, required)
    The ID of the job title.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.headcount_functional_area_id` (integer)

  - `object.name` (string)

  - `object.frontend_name` (string)

  - `object.code` (string)

  - `object.description` (string)

  - `object.training_ids` (array)

  - `object.deleted_at` (string | null)

  - `object.created_at` (string)

  - `object.updated_at` (string)

  - `object.uuid` (string)

  - `nice` (object)

  - `nice.rrn` (string)

  - `nice.functional_area_name` (string)

  - `relations` (object)

  - `relations.functional_area` (object)

  - `relations.functional_area.object` (object)

  - `relations.functional_area.object.id` (integer)

  - `relations.functional_area.object.account_id` (integer)

  - `relations.functional_area.object.headcount_functional_area_type_id` (integer)

  - `relations.functional_area.object.name` (string)

  - `relations.functional_area.object.frontend_name` (string)

  - `relations.functional_area.object.code` (string)

  - `relations.functional_area.object.target` (integer)

  - `relations.functional_area.object.auto_update_mode` (integer)

  - `relations.functional_area.object.rules` (array)

  - `relations.functional_area.object.training_ids` (array)

  - `relations.functional_area.object.is_system` (integer)

  - `relations.functional_area.object.deleted_at` (string | null)

  - `relations.functional_area.object.created_at` (string)

  - `relations.functional_area.object.updated_at` (string)

  - `relations.functional_area.object.updated_by` (integer)

  - `relations.functional_area.object.uuid` (string)

  - `relations.functional_area.nice` (object)

  - `relations.functional_area.nice.rrn` (string)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

