Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
- Overview
- Verify Webhook Signatures
- Webhook retries
- Events
- job.created
- job.updated
- job.status.updated
- job.deleted
- application.created
- application.stage.updated
- application.deleted
- candidate.updated
- candidate.note.created
- candidate.note.updated
- candidate.note.deleted
- candidate.tag.added
- candidate.tag.removed
- feedback.requested
- feedback.submitted
- feedback.updated
- interview.created
- interview.updated
- interview.cancelled
Events
job.created
Occurs when the status of a job is changed
The schema is of type object
.
Was this page helpful?
{
"id": "<string>",
"version": 123,
"type": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"data": {
"object": {
"id": "<string>",
"title": "<string>",
"description": "<string>",
"location": {
"city": "<string>",
"state": {
"id": "<string>",
"name": "<string>",
"code": "<string>"
},
"country": {
"id": "<string>",
"name": "<string>",
"code": "<string>"
},
"remote": "not_remote"
},
"owner_id": "<string>",
"status": "drafted",
"type": "full_time",
"experience": "na",
"salary": "<string>",
"job_code": "<string>",
"created_date": "2023-11-07T05:31:56Z",
"published_date": "2023-11-07T05:31:56Z",
"category": {
"id": "<string>",
"name": "<string>"
},
"language": {
"id": "<string>",
"name": "<string>",
"code": "<string>"
},
"assigned_team": {
"assigned_users": [
"<string>"
],
"recruiter_ids": [
"<string>"
]
},
"notifications": {
"new_application_email": [
"<string>"
]
},
"application_form": {
"base_form": {
"current_title": "off",
"current_company": "off",
"location": "off",
"phone": "off",
"resume": "off",
"cover_letter": "off"
},
"additional_form_ids": [
"<string>"
]
},
"auto_responder": {
"id": "<string>",
"email_subject": "<string>",
"email_body": "<string>"
},
"job_ads": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"job_board": "indeed",
"status": "unknown",
"budget": 123,
"meta": [
{
"key": "<string>",
"value": "<string>"
}
]
}
],
"apply_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"deadline": {
"closes_at": "2023-11-07T05:31:56Z",
"auto_close": true
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.