updateSourcedJobPostings
⚠️ Upserting versus updating job postings on Indeed
- If you submitted the job posting on Indeed, upsert the posting.
- If another partner submitted the job posting on Indeed, update the posting. This operation is primarily for ad agencies.
ℹ️ Notes
- This feature is in beta. Contact Indeed for more information.
- This feature is not available in Japan.
Enables ad agencies to update select fields in a job posting. For more information, see Job Sync API guide - Update job posting.
Arguments
input UpdateSourcedJobPostingsInput! Required
Input field for the jobsIngest.updateSourcedJobPostings
mutation. Contains the job posting updates to apply.
Response
Returns UpdateSourcedJobPostingsPayload .Example
Query
mutation UpdateSourcedJobPostings($input: UpdateSourcedJobPostingsInput!) { jobsIngest { updateSourcedJobPostings(input: $input) { results { jobPosting { sourcedPostingId employerJobId } } } }}
Variables
{"input": UpdateSourcedJobPostingsInput}
Response
{ "data": { "jobsIngest": { "updateSourcedJobPostings": { "results": [UpdateSourcedJobPostingResult] } } }}