---
title: "Delete organization logo"
url: "https://docs.signnow.com/docs/organization/operations/delete-v2-organizations-org_id-logo"
type: "endpoint"
section: "organization"
slug: "organization/operations/delete-v2-organizations-org_id-logo"
method: "DELETE"
path: "/v2/organizations/{org_id}/logo"
operation_id: "delete-v2-organizations-org_id-logo"
authorization: "bearer"
---

# Delete organization logo

`DELETE /v2/organizations/{org_id}/logo`

Allows admin to remove organization logo.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `org_id` | string | Yes | ID of the requested organization. |

## Responses

### 204

Returns 204: Success, no content in case of successful response for the admins and moderators with trial, professional and enterprise subscription. Returns an error when:

* If user is not admin/moderator of the Org, "code": 12003003. Message: "Access denied for current administration role in your organization."
* If user who does not have appropriate subscription tries to update settings, "code": 12003002. Message: "Access denied for current asubscription."
* If user tries to update settings of the organization that is not active or does not exist, "code": 12003001. Message: "Organization `deXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX` is not found."

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/v2/organizations/{org_id}/logo" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/organization/operations/delete-v2-organizations-org_id-logo*
