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

# Enforce Retention

> Trigger retention cleanup (admin). Deletes expired records per policy.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/data/retention/enforce
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/data/retention/enforce:
    post:
      summary: Enforce Retention
      description: Trigger retention cleanup (admin). Deletes expired records per policy.
      operationId: enforce_retention_v1_data_retention_enforce_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Enforce Retention V1 Data Retention Enforce Post
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````