manageFeaturesForEmployer
Enables or disables features for an employer. Authenticate with a [2‑legged OAuth token](/authentication/auth-2-legged-oauth).
Arguments
input ManageFeaturesForEmployerInput! Required
indeedRegistrationId ID! Required
Unique ID for the ATS-employer registration.
features EmployerRegistrationFeaturesInput! Required
Features to update. Omitted features remain unchanged. Duplicates are not allowed.
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 } } }}