Endpoints
Fetch Job Opening
Endpoints
Fetch Job Opening
Fetches the job opening referenced by the provided job opening ID
GET
/
job-openings
/
{JOB_OPENING_ID}
curl --request GET \
--url https://api.alpharun.com/api/v1/job-openings/{JOB_OPENING_ID} \
--header 'Authorization: Bearer <token>'
{
"data": {
"job_opening": {
"id": "<string>",
"name": "<string>",
"status": "live",
"interview_link": "<string>",
"location": {
"description": "<string>"
},
"pay": {
"description": "<string>"
},
"hours": {
"description": "<string>"
},
"questions": [
"<string>"
],
"job_type": {
"id": "<string>",
"name": "<string>",
"job_description": "<string>",
"ai_interviewer_guidance": "<string>",
"qualifications": [
"<string>"
],
"resume_collection_type": "after_interview",
"should_force_fullscreen": true,
"should_record_video": true
}
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the job opening to update
Response
200
application/json
Job opening created successfully
The ID of the job opening
The name of the job opening
The status of the job opening
Available options:
live
, paused
The link to the interview for this job opening
The location of the job opening
The questions of the job opening
The ID of the job opening
The name of the job type
The job description of the job type
The AI interviewer guidance of the job type
The qualifications of the job type
The resume collection type of the job type
Available options:
after_interview
, before_interview
Whether to force fullscreen mode
Whether to record video
curl --request GET \
--url https://api.alpharun.com/api/v1/job-openings/{JOB_OPENING_ID} \
--header 'Authorization: Bearer <token>'
{
"data": {
"job_opening": {
"id": "<string>",
"name": "<string>",
"status": "live",
"interview_link": "<string>",
"location": {
"description": "<string>"
},
"pay": {
"description": "<string>"
},
"hours": {
"description": "<string>"
},
"questions": [
"<string>"
],
"job_type": {
"id": "<string>",
"name": "<string>",
"job_description": "<string>",
"ai_interviewer_guidance": "<string>",
"qualifications": [
"<string>"
],
"resume_collection_type": "after_interview",
"should_force_fullscreen": true,
"should_record_video": true
}
}
}
}