partnerAtsSyncEmployerRegistration
PartnerAtsSyncEmployerRegistration query namespace.
Response
Returns PartnerAtsSyncEmployerRegistrationQueries .findRegisteredEmployers FindRegisteredEmployersConnection
Gets employer registrations. Authenticate with a [2‑legged OAuth token](/authentication/auth-2-legged-oauth). If pagination is not specified, returns the first 50 results.
input FindRegisteredEmployersInput! Required
filter FindRegisteredEmployersFilterInput! Required
Filter criteria.
first Int
after String
last Int
before String
edges [FindRegisteredEmployersEdge!]! Non-Null
FindRegisteredEmployersEdge results matching the filter.
node EmployerRegistration! Non-Null
Employer registration matching the filter.
cursor String! Non-Null
Cursor for this edge.
pageInfo PageInfo! Non-Null
Result pagination info.
endCursor String
When paginating forwards, the cursor to continue. Null if there is no next page
hasNextPage Boolean! Non-Null
Indicates if there are more pages to fetch
hasPreviousPage Boolean! Non-Null
Indicates if there are any pages prior to the current page
startCursor String
When paginating backwards, the cursor to continue. Null if there is no previous page
employerRegistrations [EmployerRegistration!]! Non-Null
Employer registrations matching the filter.
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.
createdAt DateTime! Non-Null
When this registration was created.
modifiedAt DateTime! Non-Null
When this registration was last modified.
Example
Query
query PartnerAtsSyncEmployerRegistration { partnerAtsSyncEmployerRegistration { findRegisteredEmployers { edges { node { id partnerEmployerId employerName features { retrieveSourcedCandidatesClick retrieveSourcedCandidatesAuto sendApplications } createdAt modifiedAt } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } employerRegistrations { id partnerEmployerId employerName features { retrieveSourcedCandidatesClick retrieveSourcedCandidatesAuto sendApplications } createdAt modifiedAt } } }}Response
{ "data": { "partnerAtsSyncEmployerRegistration": { "findRegisteredEmployers": FindRegisteredEmployersConnection } }}