Job ads can be modified under their existing URL after they’ve been posted.
While most fields can be freely updated, there are some restrictions:
- Job ads cannot be moved between position openings or SEEK hirers.
- Updates to
positionTitle
,jobCategories
,positionLocation
andpostingInstructions.seekAnzAdvertisementType
may result in an additional charge for that job ad.See variable pricing to learn more. - Providing a
seekApplicationQuestionnaireId
field to theupdatePostedPositionProfile
mutation will fail with aBAD_USER_INPUT
error.See the questionnnaire immutability documentation for more information. - Changing a job ad’s application method between link out and native apply can result in unexpected behaviour. In the future this will cause the
updatePostedPositionProfile
mutation to fail with aBAD_USER_INPUT
error.
The
updatePostedPositionProfile
mutation updates a live job ad.
The PositionProfile
’s existing fields will be replaced with the provided input fields.
You must provide the current values of any fields you don’t want to modify.
An exception is made for UpdatePostingInstructionInput.end
,
where omitting the field will preserve the existing end date.For example, you could run this mutation to update a job ad with a new title:
MutationVariablesResult
CopyGraphQL Explorer
mutation ($input: UpdatePostedPositionProfileInput!) {
updatePostedPositionProfile(input: $input) {
positionProfile {
profileId {
value
}
}
}
}