• No results found

setDisabledFeatures
MUTATION

Sets the disabled features for a hiring organization.This allows partners to disable specific features for a hirer that would otherwise be available based on their relationship types.Currently, one feature code is defined:
  • CandidateVerification disables the Verify with SEEK Pass functionality for the hirer.
This mutation accepts tokens that include the mutate:candidate-verification scope.

Arguments

NameDescription
disabledFeatures* 
[String!]!
The list of feature codes to disable for this hirer.Currently, one disabled feature code is defined:
  • CandidateVerification disables the Verify with SEEK Pass functionality for the hirer.
hiringOrganization* 
HiringOrganizationInput!
The identifier for the HiringOrganization to set disabled features for.

Result

SetDisabledFeaturesPayload
NameDescription
disabledFeatures* 
[String!]!
The updated list of disabled feature codes for this hirer-partner combination.

Sample

GraphQL
mutation ($input: SetDisabledFeaturesInput!) {
  setDisabledFeatures(input: $input) {
    disabledFeatures
  }
}