curl --request POST \
--url https://api.example.com/edition/config/remove-by-config-type \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 123,
"editionConfigTypeID": 123
}
'{
"success": true,
"data": "<unknown>"
}Delete all entries for a certain edition and a certain config type
curl --request POST \
--url https://api.example.com/edition/config/remove-by-config-type \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"editionID": 123,
"editionConfigTypeID": 123
}
'{
"success": true,
"data": "<unknown>"
}