updatePostedPositionProfile
MUTATION

Asynchronously updates a live job ad.The position profile's existing fields will be replaced with the provided input fields. This will update the live job ad under its current URL.

Arguments

Name
Description
The values to replace on a posted position profile.

Result

UpdatePostedPositionProfilePayload
Name
Description
Attributes of the updated position profile.

Sample

GraphQL
mutation ($input: UpdatePostedPositionProfileInput!) {
  updatePostedPositionProfile(input: $input) {
    positionProfile {
      profileId {
        value
      }
    }
  }
}