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 |
|---|---|
DeleteUploadedCandidate_CandidateInput! | The details of the uploaded Candidate to be deleted. |
Result
DeleteUploadedCandidatePayload| Name | Description |
|---|---|
Candidate! | The details of the uploaded candidate that was deleted.The uploaded candidate profile is available in the profiles field. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: DeleteUploadedCandidateInput!) {
deleteUploadedCandidate(input: $input) {
candidate {
documentId {
value
}
seekPrimaryEmailAddress
}
}
}