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

NameDescription
The details of the uploaded Candidate to be deleted.

Result

DeleteUploadedCandidatePayload
NameDescription
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
    }
  }
}