curl --request POST \
--url https://api.example.com/edition/config/entity/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 123,
"editionConfigTypeID": 123,
"entityTypeID": 123,
"entityIDs": [
123
]
}
'{
"success": true,
"data": "<unknown>"
}Remove Entity in Edition Config.
curl --request POST \
--url https://api.example.com/edition/config/entity/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 123,
"editionConfigTypeID": 123,
"entityTypeID": 123,
"entityIDs": [
123
]
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.