> ## Documentation Index
> Fetch the complete documentation index at: https://docs.y.uno/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a Provider Logo

> Deletes your custom logo for one provider, so it falls back to the Yuno catalogue's icon.

Deletes your custom logo for this provider, so it falls back to the Yuno catalogue's icon.

Idempotent, and it leaves the instruction override and the allowlist untouched.

### Path Parameters

<ParamField path="provider_id" type="string" required>
  Yuno catalogue provider id in UPPER\_SNAKE\_CASE. Case-insensitive — normalized to upper case.
</ParamField>

### Response

`204 No Content`. There is no response body.

<CodeGroup>
  ```bash cURL theme={"theme":{"light":"github-dark","dark":"github-dark-dimmed"}}
  curl -X DELETE 'https://api.y.uno/v1/whitelabel/providers/YUNO_3DS/logo' \
    -H 'public-api-key: <YOUR_PUBLIC_KEY>' \
    -H 'private-secret-key: <YOUR_SECRET_KEY>' \
    -i
  ```

  ```text 204 No Content theme={"theme":{"light":"github-dark","dark":"github-dark-dimmed"}}
  HTTP/1.1 204 No Content
  ```

  ```json 400 Bad Request theme={"theme":{"light":"github-dark","dark":"github-dark-dimmed"}}
  {
    "code": "VALIDATION_ERROR",
    "messages": ["provider_id is invalid"]
  }
  ```
</CodeGroup>

After deleting, [Retrieve a Provider Overlay](/reference/organizations/whitelabel/retrieve-provider) no longer returns a `logo_url` for this provider.

### Errors

<div className="code-nowrap-table dense-table">
  | HTTP  | `code`              | When                                       |
  | ----- | ------------------- | ------------------------------------------ |
  | `400` | `VALIDATION_ERROR`  | `provider_id` is not a valid catalogue id. |
  | `401` | `NOT_AUTHENTICATED` | Missing or invalid API keys.               |
</div>


## OpenAPI

````yaml openapi/organizations/whitelabel/delete-provider-logo.json DELETE /whitelabel/providers/{provider_id}/logo
openapi: 3.1.0
info:
  title: White-label Providers API - Delete Logo
  version: 1.0.0
servers:
  - url: https://api-sandbox.y.uno/v1
  - url: https://api.eu.y.uno/v1
security:
  - sec0: []
    sec1: []
paths:
  /whitelabel/providers/{provider_id}/logo:
    delete:
      summary: Delete a Provider Logo
      description: >-
        Deletes your custom logo for this provider, so it falls back to the Yuno
        catalogue's icon. Idempotent, and it leaves the instruction override and
        the allowlist untouched.
      operationId: delete-whitelabel-provider-logo
      parameters:
        - name: provider_id
          in: path
          required: true
          description: >-
            Yuno catalogue provider id in UPPER_SNAKE_CASE. Case-insensitive;
            normalized to upper case.
          schema:
            type: string
            example: YUNO_3DS
      responses:
        '204':
          description: Logo reset. No content.
        '400':
          description: Invalid provider_id.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: VALIDATION_ERROR
                  messages:
                    type: array
                    items:
                      type: string
                    example:
                      - provider_id is invalid
        '401':
          description: Unauthorized — invalid or missing API keys.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    example: NOT_AUTHENTICATED
                  messages:
                    type: array
                    items:
                      type: string
                    example:
                      - Not authenticated
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: PUBLIC-API-KEY
      x-default: <Your PUBLIC-API-KEY>
    sec1:
      type: apiKey
      in: header
      name: PRIVATE-SECRET-KEY
      x-default: <Your PRIVATE-SECRET-KEY>

````