Approves a requisition (must be in a compatible state). Required scope: w_requisitions
. For accounts with Hiring Plan.
Results
Calling the /requisitions/:code
endpoint will return the full requisition JSON object.
The object will have the following keys:
key | type | description |
---|---|---|
id |
| The requisition identifier |
code |
| The code of the requisition |
job |
| The job of the requisition |
job.id |
| The ID of the job |
job.title |
| The title of the job |
department |
| The department of the requisition |
department.id |
| The ID of the department |
department.name |
| The name of the department |
location |
| The location of the requisition |
location.location_str |
| The string representation of the location |
location.country |
| The country full name |
location.country_code |
| The 2-letter ISO code of the country |
location.region |
| The region of the location |
location.region_code |
| The code of the region of the location |
location.city |
| The city of the location |
location.zip_code |
| The ZIP code of the location |
requester |
| The requester of the requisition |
requester.id |
| The ID of the requester |
requester.name |
| The name of the requester |
hiring_manager |
| The hiring manager of the requisition |
hiring_manager.id |
| The ID of the hiring manager |
hiring_manager.name |
| The name of the hiring manager |
owner |
| The owner of the requisition |
owner/id |
| The ID of the owner |
owner/name |
| The name of the owner |
plan_date |
| The plan date of the requisition in |
start_date |
| The start date of the requisition in |
salary_range |
| The salary range of the requisition. |
salary_range.from |
| The minimum salary of the requisition |
salary_range.to |
| The maximum salary of the requisition |
salary_range.frequency |
| The frequency of the salary range. Can be one of hour, day, week, month, year. |
salary_range.currency_iso |
| The 3-letter ISO code of the currency (ie EUR, USD). |
salary |
| The salary of the requisition. Only exists for filled requisitions. |
salary.amount |
| The amount of the salary |
salary.frequency |
| The frequency of the salary range. Can be one of hour, day, week, month, year. |
salary.currency_iso |
| The 3-letter ISO code of the currency (ie EUR, USD). |
candidate_id |
| |
employment_type |
| The employment type. Can be one of Full-time, Part-time, Contract, Temporary, Other. |
reason |
| The reason for the requisition. Can be one of new_hire, replacement, backfill. |
state |
| The state of the requisition. Can be one of processing, draft, pending, approved, open, filled, rejected, cancelled, reserved, on_hold. |
requisition_attributes |
| The attributes of the requisition. For the keys of each requisition attribute check the table below. |
approval_groups |
| The approval groups of the requisition, in the order of the approval workflow. For the keys of each approval group check the table below. |
Each document_variable
contains the following keys
key | type | description |
---|---|---|
name |
| The name of the requisition attribute |
value.body |
| The value of the requisition attribute. It's type varies depending on the type of the requisition attribute:
|
value.choices |
| Array of the labels of the selected choices |
data |
| The value data (only for salary requisition attributes) |
data.amount |
| The amount of salary |
data.frequency |
| The frequency of the salary. Can be one of hour, day, week, month, year. |
data.currency_iso |
| The 3-letter ISO code of the currency (ie EUR, USD). |
Each approval group contains the following keys
key | type | description |
---|---|---|
id |
| The approval group identifier |
approvers |
| Array of the approvers of the approval group for the specific requisition. For groups with a decision (positive or negative), only that approver will be present. For groups without a decision, all the approvers will appear. |
approvers.id |
| The identifier of the approver |
approvers.name |
| The name of the approver |
approvers.decision |
| The decision of the approver (only if the approver has submitted a decision). If present, it is one of |