Updating a job ad

    Suggestions will appear below the field as you type

    Updating a job ad

      Suggestions will appear below the field as you type

      Updating a job ad

      Updating a job ad

      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:

      Operations

      updatePostedPositionProfile

      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
      mutation ($input: UpdatePostedPositionProfileInput!) {
        updatePostedPositionProfile(input: $input) {
          positionProfile {
            profileId {
              value
            }
          }
        }
      }
      You will receive a FORBIDDEN error if you try to update a job ad that has already been closed.