Recomly APIEndpoints
Delete logo
Remove the organization's saved logo from storage and branding settings.
DELETE /api/app/branding/logo
Deletes the organization's saved logo. The S3 object is removed from storage and the logoUrl and logoKey fields are cleared from the branding record.
Requires the customBranding feature entitlement.
Request
See API Basics for required headers.
This endpoint takes no request body or query parameters.
Sample request
curl -X DELETE https://api.recomly.com/api/app/branding/logo \
-H "Authorization: Bearer rk_live_abc123:def456"Sample response
Status: 200 OK
{
"ok": true
}Error responses
See API Basics for standard status codes and error response format.
| Status | When |
|---|---|
403 Forbidden | Caller does not have the admin role, or the customBranding feature is not enabled for this organization. |
404 Not Found | No logo is currently set for this organization. |

