curl --request POST \
--url https://api.example.com/media/remove-svg-from-entity \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entityTypeID": 14,
"svgid": 23121
}
'{
"success": true,
"data": "<unknown>"
}Remove an SVG file from a specific entity (explore group, ism list, etc).
curl --request POST \
--url https://api.example.com/media/remove-svg-from-entity \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entityID": 123,
"entityTypeID": 14,
"svgid": 23121
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.