findEmployerJobsPartner
Finds job postings by source ID, or lists all employer job postings. See Job Sync API guide - List job postings.
Arguments
input FindEmployerJobsPartnerInput
Filters and sorts job postings for findEmployerJobsPartner.
filters FindEmployerJobsPartnerFilterInput
Filters job postings.
legacySourceId ID
Alphanumeric source ID from the Sponsored Jobs API. Primarily for ad agency partners.
If provided, lists jobs with this ID. If omitted, lists all jobs for the employer associated with the access token.
jobFeedType [JobFeedType!]
Filters jobs by feed type/source.
UNKNOWN: Can combine with one other type. Applies to jobs before June 1, 2025 that weren't classified.
Other types: Only one allowed.
Default: INTEGRATED_FROM_PARTNER
includeMultiLocationJobs Boolean
Whether to include multi-location jobs.
sort [FindEmployerJobsPartnerSortInput!]
Sorts job postings.
sortDirection FindEmployerJobsPartnerSortDirection
Sort direction: ASC (default, lowest to highest) or DESC (highest to lowest).
sortField FindEmployerJobsPartnerSortField
Sort field. Required for sortDirection to take effect.
first Int! default:10
Number of items to return. Maximum 1,000.
Response
Returns FindEmployerJobsPartnerConnection .employerJobs [EmployerJob]! Non-Null
Employer jobs info.
id ID! Non-Null
A Base64-encoded version of the sourcedPostingID.
jobData EmployerJobData
The job data that is associated with the EmployerJob in our system, appropriate to the user requesting this data.
seatsConnection EmployerJobSeatsConnection
Paginated job seats. first: Page size. after: Pagination cursor.
edges [EmployerJobSeatsEdge!]! Non-Null
EmployerJobSeat edges for this connection.
pageInfo PageInfo! Non-Null
This connection's pagination data.
seats [EmployerJobSeat!]! Non-Null
EmployerJobSeat results for this connection.
managementUrls EmployerJobManagementUrls! Non-Null
URLs for managing jobs.
viewJob WebUrl! Non-Null
The employer-facing URL for the job.
estimatedTotalResultsCount Int! Non-Null
Estimated total job postings.
pageInfo PageInfo! Non-Null
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
Example
Query
query FindEmployerJobsPartner( $input: FindEmployerJobsPartnerInput, $first: Int!, $before: String, $after: String) { findEmployerJobsPartner( input: $input, first: $first, before: $before, after: $after ) { employerJobs { id jobData { title dateCreated description company salary { period maximumMinor minimumMinor currency maximumMajor minimumMajor basePaySpecified } jobLocation { countryCode city postalCode fullAddress } externalJobPageUrl externalPostingMetadata { jobPostingId jobRequisitionId campaignCategories trackingUrls rawInputLocation isIntegratedJob } datePostedOnIndeed } seatsConnection { edges { node { seatData { ...EmployerJobSeatDataFragment } jobPost { ...JobPostFragment } } cursor } pageInfo { endCursor hasNextPage hasPreviousPage startCursor } seats { seatData { campaignCategories metaData { ...EmployerJobSeatMetaDataFragment } visibilityData { ...EmployerJobSeatVisibilityDataFragment } location { ...WorkLocationFragment } } jobPost { id externalPartnerCallToAction { ...JobPostCallToActionFragment } status { ...JobPostStatusFragment } } } } managementUrls { viewJob } } estimatedTotalResultsCount pageInfo { endCursor hasNextPage hasPreviousPage startCursor } }}Variables
{ "input": FindEmployerJobsPartnerInput, "first": 10, "before": "Generated Argument example for findEmployerJobsPartner before", "after": "Generated Argument example for findEmployerJobsPartner after"}Response
{ "data": { "findEmployerJobsPartner": { "employerJobs": [EmployerJob], "estimatedTotalResultsCount": 123, "pageInfo": PageInfo } }}