DELETE
/
job-openings
/
{JOB_OPENING_ID}
/
interviews
Remove candidate from job opening
curl --request DELETE \
  --url https://api.alpharun.com/api/v1/job-openings/{JOB_OPENING_ID}/interviews \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contact_id": "abc123"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

JOB_OPENING_ID
string
required

ID of the job opening

Body

application/json

Payload for deleting a candidate's interview from a job opening. At least one identifier must be provided.

Response

200
application/json

Candidate successfully deleted from job opening

The response is of type object.