Creates a new unposted position profile for an opening.If the position opening already contains 25 position profiles this will fail with a
BAD_USER_INPUT error.Arguments
| Name | Description |
|---|---|
CreateUnpostedPositionProfileForOpeningPositionProfileInput! | An unposted profile of a position opening to create. |
Result
CreateUnpostedPositionProfileForOpeningPayload!| Name | Description |
|---|---|
UnpostedPositionProfile! | Attributes of the newly created unposted position profile. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: CreateUnpostedPositionProfileForOpeningInput!) {
createUnpostedPositionProfileForOpening(input: $input) {
positionProfile {
profileId {
value
}
profileName
seekAnzWorkTypeCode
seekBillingReference
seekHirerJobReference
seekPartnerMetadata
}
}
}