# Get person **GET /data/persons/{instance_id}** Retrieve a person by their ID and return it as a JSON object. Supports including relations. Managers see safe serialization, others see minimal information. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Jwt authorization ## Parameters #### Path parameters - **instance_id** (string(uuid)) #### Query parameters - **relations** (boolean) Whether to include relations ## Responses ### 200: Person retrieved successfully #### Body Parameters: application/json (object) - **id** (string(uuid)) - **first_name** (string) - **last_name** (string) - **email** (string(email)) - **role** (string) - **active** (boolean) - **contract_type** (string) - **two_factor_authentication** (string) - **departments** (array[string(uuid)]) - **created_at** (string(date-time)) - **updated_at** (string(date-time)) ### 400: Invalid ID format or query error [Powered by Bump.sh](https://bump.sh)