This content is still in draft.
The
positionProfile
query returns the current state of a job ad.
In addition to the fields you provided during posting, it returns the URL of a live job ad and the end date of the posting.Posting job ads to a SEEK job board is an asynchronous process.
Until the job ad has gone live the
positionProfile
query will return null
.
Events can be used to trigger a query of the position profile once it’s available.You can determine if a job ad is closed based on its
postingInstructions.end
field .
If the posting end date is in the past then the job ad was closed on the specified date.
There is currently no event emitted when a job ad has been closed.QueryVariablesResult
Copy Playground
query($id: String!) {
positionProfile(id: $id) {
profileId {
value
}
positionTitle
positionUri
postingInstructions {
start
end
}
}
}
Managing job ads
Managing job ads
Managing job ads