Skip to main content
PUT
/
api
/
Configuration
/
JobPosting
/
Classifications
Update Advert Classifications.
curl --request PUT \
  --url https://api.example.com/api/Configuration/JobPosting/Classifications \
  --header 'Content-Type: application/json' \
  --data '
{
  "create": [
    {
      "id": 123,
      "name": "<string>",
      "newChildren": [
        "<string>"
      ]
    }
  ],
  "delete": [
    123
  ]
}
'

Body

application/json
create
object[] | null
delete
integer<int32>[] | null

Response

200

OK