Teams
Delete team logo
Remove a team's logo and fall back to its initials.
DELETE /teams/{teamId}/logo
Removes the team's logo. Anywhere the logo appeared falls back to the team's initials.
Authentication: Bearer token · Permission:
teams:delete · Team permission:team_settings.write · Rate limit: default (120 / 60s)Idempotent. Removing the logo from a team that has none succeeds and returns
logoUrl: null. You do not have to check first.Path parameters
teamId
string · uuid v7 required
The ID of the team whose logo is being removed.
Request
curl -X DELETE https://api.twominutereports.com/v1/teams/0190f8b0-1a2b-7c3d-8e4f-5a6b7c8d9e0f/logo \
-H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Response
{
"success": true,
"data": { "logoUrl": null }
}
{
"success": false,
"error": { "code": "FORBIDDEN", "message": "You do not have permission to change this team's settings" }
}
{
"success": false,
"error": { "code": "NOT_FOUND", "message": "Team not found" }
}