# Hiring Team Array in Recruiting API We have introduced a new `hiring_team` array to the Recruiting API responses for both applications and jobs. This array lists all persons assigned as responsible for a job or application. If no persons are assigned to a job, the array will be empty. Each entry in the array includes the person’s ID and role, as well as a link to the /persons endpoint for detailed information. Please note that accessing person details requires the appropriate Persons permission scope. ```json Sample Response "hiring_team": [ { "person": { "id": "24205129", "_meta": { "links": { "self": { "href": "https://api.personio.de/v2/persons/24205129" } } } }, "role": { "name": "HR Manager" } } ] ```