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

# Delete tenant+user-scoped client storage entry

> Delete an opaque key-value entry scoped to a tenant and the authenticated user. User ID is derived from the auth token.



## OpenAPI

````yaml /flintai/api-reference/openapi.json delete /client-storage/tenants/{tenant_id}/users/{client_id}/{namespace}/{key}
openapi: 3.0.3
info:
  contact: {}
  description: Flint AI Platform API
  license:
    name: Flint AI
    url: https://www.sandboxaq.com/legal/eula
  title: Flint AI Platform API
  version: 1.0.0
servers:
  - description: Flint AI Platform (per-tenant instance)
    url: https://{instance}.flintai.dev/api/v1
    variables:
      instance:
        default: your-instance
        description: Your Flint AI instance subdomain
security: []
paths:
  /client-storage/tenants/{tenant_id}/users/{client_id}/{namespace}/{key}:
    delete:
      tags:
        - client-storage
      summary: Delete tenant+user-scoped client storage entry
      description: >-
        Delete an opaque key-value entry scoped to a tenant and the
        authenticated user. User ID is derived from the auth token.
      operationId: DeleteClientStorageTenantUser
      parameters:
        - description: Tenant ID
          in: path
          name: tenant_id
          required: true
          schema:
            type: string
        - description: Client ID
          in: path
          name: client_id
          required: true
          schema:
            type: string
        - description: Namespace
          in: path
          name: namespace
          required: true
          schema:
            type: string
        - description: Key
          in: path
          name: key
          required: true
          schema:
            type: string
      responses:
        '204':
          description: No Content
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.RequestError'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.RequestError'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.RequestError'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.RequestError'
          description: Not Found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/common.RequestError'
          description: Internal Server Error
      security:
        - BearerAuth: []
components:
  schemas:
    common.RequestError:
      description: Error responses returned by the API
      properties:
        code:
          example: 400
          type: integer
        message:
          example: Invalid request
          type: string
      required:
        - code
        - message
      type: object
  securitySchemes:
    BearerAuth:
      description: Use this header with a Bearer token to authenticate requests.
      in: header
      name: Authorization
      type: apiKey

````