manageFeaturesForEmployer
Enables or disables features for an employer. Authenticate with a 2‑legged OAuth token.
Arguments
input ManageFeaturesForEmployerInput! Required
indeedRegistrationId ID! Required
Unique ID for the ATS-employer registration.
features EmployerRegistrationFeaturesInput! Required
The features to update. Omit a feature to keep its current value. You can't include duplicates.
retrieveSourcedCandidatesClick IndeedFeatureStatusInput
RetrieveSourcedCandidates.OneClick feature status.
retrieveSourcedCandidatesAuto IndeedFeatureStatusInput
RetrieveSourcedCandidates.AutomatedTransfers feature status.
sendApplications IndeedFeatureStatusInput
SendApplications feature status.
Response
Returns ManageFeaturesForEmployerPartnerAtsSyncEmployerRegistrationPayload .employerRegistration EmployerRegistration! Non-Null
Updated employer registration.
partnerEmployerId ID! Non-Null
Unique ATS employer ID from the partner.
employerName String! Non-Null
Employer name for this registration.
features EmployerRegistrationFeatures! Non-Null
Feature statuses for this registration.
retrieveSourcedCandidatesClick IndeedFeatureStatus! Non-Null
RetrieveSourcedCandidates.OneClick feature status.
retrieveSourcedCandidatesAuto IndeedFeatureStatus! Non-Null
RetrieveSourcedCandidates.AutomatedTransfers feature status.
sendApplications IndeedFeatureStatus! Non-Null
SendApplications feature status.
createdAt DateTime! Non-Null
When this registration was created.
modifiedAt DateTime! Non-Null
When this registration was last modified.
Example
Query
mutation ManageFeaturesForEmployer($input: ManageFeaturesForEmployerInput!) { partnerAtsSyncEmployerRegistration { manageFeaturesForEmployer(input: $input) { employerRegistration { id partnerEmployerId employerName features { retrieveSourcedCandidatesClick retrieveSourcedCandidatesAuto sendApplications } createdAt modifiedAt } } }}Variables
{"input": ManageFeaturesForEmployerInput}Response
{ "data": { "partnerAtsSyncEmployerRegistration": { "manageFeaturesForEmployer": { "employerRegistration": EmployerRegistration } } }}