manageFeaturesForEmployer
2-legged OAuthトークンを使用して、雇用主の機能を有効または無効にする。
引数
input ManageFeaturesForEmployerInput! 必須
indeedRegistrationId ID! 必須
ATS雇用主登録の一意のIDです。
features EmployerRegistrationFeaturesInput! 必須
機能とその目的の状態。空にしたり、重複を含めたりすることはできない。
retrieveSourcedCandidatesClick IndeedFeatureStatusInput
RetrieveSourcedCandidates.OneClick機能のステータス。
retrieveSourcedCandidatesAuto IndeedFeatureStatusInput
RetrieveSourcedCandidates.AutomatedTransfers機能のステータス。
sendApplications IndeedFeatureStatusInput
SendApplications機能のステータス。
応答
ManageFeaturesForEmployerPartnerAtsSyncEmployerRegistrationPayload を返す。employerRegistration EmployerRegistration! 非null
更新された雇用主登録です。
partnerEmployerId ID! 非null
パートナーからの一意のATS雇用主IDです。
employerName String! 非null
この登録の雇用主名です。
features EmployerRegistrationFeatures! 非null
この登録の機能ステータスです。
retrieveSourcedCandidatesClick IndeedFeatureStatus! 非null
RetrieveSourcedCandidates.OneClick機能のステータス。
retrieveSourcedCandidatesAuto IndeedFeatureStatus! 非null
RetrieveSourcedCandidates.AutomatedTransfers機能のステータス。
sendApplications IndeedFeatureStatus! 非null
SendApplications機能のステータス。
createdAt DateTime! 非null
この登録が作成された日時です。
modifiedAt DateTime! 非null
この登録が最後に変更された日時です。
例
クエリ
mutation ManageFeaturesForEmployer($input: ManageFeaturesForEmployerInput!) { partnerAtsSyncEmployerRegistration { manageFeaturesForEmployer(input: $input) { employerRegistration { id partnerEmployerId employerName features { retrieveSourcedCandidatesClick retrieveSourcedCandidatesAuto sendApplications } createdAt modifiedAt } } }}変数
{"input": ManageFeaturesForEmployerInput}応答
{ "data": { "partnerAtsSyncEmployerRegistration": { "manageFeaturesForEmployer": { "employerRegistration": EmployerRegistration } } }}