Cancel Scheduling

Cancel Scheduled Candidates

post

Cancel scheduled candidates for a specific interview.

Authorizations
Path parameters
idstringRequired

The interview ID

Body
candidateEmailsstring · email[]RequiredExample: rahul2002m@gmail.com
Responses
200

Interview(s) cancelled

application/json
Responseall of
post
POST /api/v1/interview/{id}/cancel-scheduled-candidates HTTP/1.1
Host: interview-api.zeko.ai
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 44

{
  "candidateEmails": [
    "rahul2002m@gmail.com"
  ]
}
{
  "message": "Interview(s) cancelled",
  "success": true,
  "data": {
    "cancelledCandidates": [
      {
        "candidateEmail": "rahul2002m@gmail.com",
        "candidateName": "Rahul",
        "metaData": {
          "Id": 12345,
          "name": "012 - Tester",
          "clientId": 12434311
        }
      }
    ]
  }
}

Last updated