Mark an Applicant as Hired
Overview
Marking an applicant as hired will set the application's hired_at
attribute and trigger any actions activated by the applicant_marked_as_hired
event.
Action Type
mark_as_hired
Required Data
app_id
The id of the application for which to mark as hired.
Optional Data
hire_date
The time at which the applicant should be marked as hired. Defaults to the current time.start_date
The time at which the applicant will start work.
Example Request Payload
{
"type": "mark_as_hired",
"data": {
"app_id": 3640
}
}
Usage
Upon execution of the action, you will see the applicant marked as hired:
Updated over 4 years ago