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>",
  "link_access": {
    "restricted": true
  },
  "job_type_id": "<string>"
}'
{
  "data": {
    "job_opening": {
      "id": "123456",
      "interview_link": "https://alpharun.com/i/abcdef123456",
      "job_type": {
        "id": "789012"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Job opening created successfully

The response is of type object.