curl --request DELETE \
--url https://api.example.com/cabinet/branding/logo \
--header 'Authorization: Bearer <token>'{
"name": "<string>",
"logo_letter": "<string>",
"has_custom_logo": true,
"logo_url": "<string>"
}Delete custom logo and revert to letter. Admin only.
curl --request DELETE \
--url https://api.example.com/cabinet/branding/logo \
--header 'Authorization: Bearer <token>'{
"name": "<string>",
"logo_letter": "<string>",
"has_custom_logo": true,
"logo_url": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.