Worker profiles, for hirers

Remove 1 or more hirer labels from a worker.

Remove 1 or more of the labels that the hirer has defined for workers, from a worker, using the user ID instead of the worker ID. The user must be a worker.

If the worker already does not have the label assigned to them, this will not result in an error.

This is a legacy endpoint. remove-hirer-labels-from-worker-v1 should be used instead. Only use this if your system does not know the worker ID.

post/public/worker-profiles/hirer/remove-hirer-labels-from-user-v1

Request body

userIdinteger required

The user ID of the worker from which to remove the hirer labels.

hirerLabelsstring[] required

The hirer labels that must be removed from the worker.

The labels may not be blank: they may not be empty strings, nor consist only of whitespace characters.

Example request

{
  "userId": 1,
  "hirerLabels": [
    "hirerLabels",
    "hirerLabels"
  ]
}

Response

The operation completed successfully.