POST
/
job-openings
curl --request POST \
  --url https://api.alpharun.com/api/v1/job-openings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "location": "<string>",
  "pay": "<string>",
  "hours": "<string>",
  "job_type_id": "<string>"
}'
{
  "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.

Body

application/json
name
string
required

Name of the job opening. Example: 'Store Manager - San Francisco'

Required string length: 3 - 150
job_type_id
string
required

ID of an existing job type

location
string

Location of the job. Example: 'In-office 3 days per week in San Francisco, CA'

Maximum length: 200
pay
string

Pay information. Example: '$18 per hour or $80,000 - $100,000 per year'

Maximum length: 200
hours
string

Working hours information. Example: 'Full-time, 40 hours per week'

Maximum length: 200

Response

200
application/json
Job opening created successfully
data
object