Asynchronously closes a live job ad.The job ad will be removed from the job board and no refund will be issued.
The
PositionProfile and its associated candidate applications will be available for 6 months after its close date.Once the job ad has been closed a PositionProfileClosed event will be emitted.Arguments
| Name | Description |
|---|---|
ClosePostedPositionProfile_PositionProfileInput! | The details of the position profile to be closed. |
Result
ClosePostedPositionProfilePayload| Name | Description |
|---|---|
ClosePostedPositionProfile_PositionProfilePayload! | Attributes of the closed position profile. |
Sample
GraphQL
CopyGraphQL Explorer
mutation ($input: ClosePostedPositionProfileInput!) {
closePostedPositionProfile(input: $input) {
positionProfile {
profileId {
value
}
}
}
}