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
]
}
'Updates the Adverts Module 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
]
}
'Was this page helpful?