PATCH
/
job-openings
/
{JOB_OPENING_ID}
curl --request PATCH \
  --url https://api.alpharun.com/api/v1/job-openings/{JOB_OPENING_ID} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Store Manager - San Francisco",
  "location": "In-office 3 days per week in San Francisco, CA",
  "pay": "$18 per hour or $80,000 - $100,000 per year",
  "hours": "Full-time, 40 hours per week",
  "status": "live",
  "job_type": {
    "job_description": "<job_description>",
    "ai_interviewer_guidance": "Be friendly and professional",
    "resume_collection_type": "before_interview",
    "should_force_fullscreen": true,
    "should_record_video": true
  }
}'
{
  "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

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobOpeningId
string
required

The ID of the job opening to update

Body

application/json
name
string

Name of the job opening

Required string length: 3 - 150
location
string | null

Location of the job

Maximum length: 200
pay
string | null

Pay information

Maximum length: 200
hours
string | null

Working hours information

Maximum length: 200
status
enum<string>

Status of the job opening

Available options:
live,
paused
job_type
object

Response

200
application/json
Job opening updated successfully
data
object