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.

contact_id
string

ID of the contact to delete

email
string<email>

Email address of the contact to delete

phone_number
string

Phone number of the contact to delete

Response

Candidate successfully deleted from job opening

success
boolean

Indicates successful deletion