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

# Clear Cache

> Force-expire all in-process caches (JWKS + service token). Next request re-fetches.



## OpenAPI

````yaml /openapi/inventory.yaml post /internal/cache/clear
openapi: 3.1.0
info:
  title: Cape Digi - Inventory Service
  description: >-
    Ad inventory catalog, rate cards, booking orders, campaign tracking, ad
    asset management, and commercial transmission scheduling.
  version: 1.0.0
servers:
  - url: https://api.capedigital.co.ke/inventory
    description: Production
  - url: http://localhost:8000
    description: Local
security: []
paths:
  /internal/cache/clear:
    post:
      tags:
        - Internal
      summary: Clear Cache
      description: >-
        Force-expire all in-process caches (JWKS + service token). Next request
        re-fetches.
      operationId: clear_cache_internal_cache_clear_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````