# place.stream.branding.deleteBlob

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.deleteBlob)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.deleteBlob/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.deleteBlob/examples)

## Definitions

### `place.stream.branding.deleteBlob`

**Type**: `procedure`

Delete a branding asset blob. Requires admin authorization.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `key` | `string` | Yes | Branding asset key (mainLogo, favicon, siteTitle, etc.) |
| `broadcaster` | `string` (did) | No | DID of the broadcaster. If not provided, uses the server's default broadcaster. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `success` | `boolean` | Yes |  |

#### Errors

- **Unauthorized**: The authenticated DID is not authorized to modify branding
- **BrandingNotFound**: The requested branding asset does not exist

## Raw Schema

```json
{
  "id": "place.stream.branding.deleteBlob",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "key"
          ],
          "properties": {
            "key": {
              "type": "string",
              "description": "Branding asset key (mainLogo, favicon, siteTitle, etc.)"
            },
            "broadcaster": {
              "type": "string",
              "format": "did",
              "description": "DID of the broadcaster. If not provided, uses the server's default broadcaster."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "Unauthorized",
          "description": "The authenticated DID is not authorized to modify branding"
        },
        {
          "name": "BrandingNotFound",
          "description": "The requested branding asset does not exist"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "success"
          ],
          "properties": {
            "success": {
              "type": "boolean"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": null,
      "description": "Delete a branding asset blob. Requires admin authorization."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
