registerEmployer
雇用主の3-legged OAuthトークンを使用して呼び出す。partnerEmployerIdは、このAPIおよび他のAPIペイロード(エクスポートされた候補者など)で返され、候補者を正しい雇用主に関連付けるために使用する。
引数
input RegisterEmployerInput! 必須
応答
RegisterEmployerPartnerAtsSyncEmployerRegistrationPayload を返す。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 RegisterEmployer($input: RegisterEmployerInput!) { partnerAtsSyncEmployerRegistration { registerEmployer(input: $input) { employerRegistration { id partnerEmployerId employerName features { retrieveSourcedCandidatesClick retrieveSourcedCandidatesAuto sendApplications } createdAt modifiedAt } } }}変数
{"input": RegisterEmployerInput}応答
{ "data": { "partnerAtsSyncEmployerRegistration": { "registerEmployer": { "employerRegistration": EmployerRegistration } } }}