deleteUploadedCandidate
MUTATION

Deletes an uploaded candidate and their profile from SEEK's systems.This will also delete all CandidateProcessHistoryItems belonging to the candidate profile.

Arguments

Name
Description
The details of the uploaded Candidate to be deleted.

Result

DeleteUploadedCandidatePayload
Name
Description
candidate* 
Candidate!
The details of the uploaded candidate that was deleted.The uploaded candidate profile is available in the profiles field.

Sample

GraphQL
mutation ($input: DeleteUploadedCandidateInput!) {
  deleteUploadedCandidate(input: $input) {
    candidate {
      documentId {
        value
      }
      seekPrimaryEmailAddress
    }
  }
}