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:
CandidateVerificationdisables the Verify with SEEK Pass functionality for the hirer.
mutate:candidate-verification scope.Arguments
| Name | Description |
|---|---|
[String!]! | The list of feature codes to disable for this hirer.Currently, one disabled feature code is defined:
|
HiringOrganizationInput! | The identifier for the HiringOrganization to set disabled features for. |
Result
SetDisabledFeaturesPayload| Name | Description |
|---|---|
[String!]! | The updated list of disabled feature codes for this hirer-partner combination. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: SetDisabledFeaturesInput!) {
setDisabledFeatures(input: $input) {
disabledFeatures
}
}