curl --request POST \
--url https://api.example.com/admin/entity/deescalate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entityTypeID": 123,
"optionalEditionID": 123,
"optionalLanguageID": 1,
"optionalComment": "I am concerned about bla bla bla"
}
'{
"success": true,
"data": "<unknown>"
}De-escalates an entity by ID and type.
curl --request POST \
--url https://api.example.com/admin/entity/deescalate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entityTypeID": 123,
"optionalEditionID": 123,
"optionalLanguageID": 1,
"optionalComment": "I am concerned about bla bla bla"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.