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

# Delete Allocations

> ## 할당 삭제

캐시에서 할당 정보를 제거합니다. 대상은 요청 본문에 있는 `(cid, pid)` 쌍 목록으로 식별됩니다.



## OpenAPI

````yaml /openapi/decision.api.ko-0.2.2.json delete /api/cache/allocations
openapi: 3.1.0
info:
  contact:
    email: a2support@aiderx.io
    name: A2 Support
    url: https://aiderx.io
  description: |-
    ### 소개
    이 문서는 Decision API의 Ad Serving API 및 Recommendation API 구성 요소를 다룹니다.
  title: Decision APIs
  version: v0.2.2
  x-logo:
    altText: A2 Logo
    url: >-
      https://cdn.prod.website-files.com/668de9e1f25ab5675d87758d/6690cf1bdce95af5e3522c25_a2_logo_800_250.png
servers: []
security: []
tags:
  - description: |
      광고 전환, 노출, 클릭 로그를 수신하는 API — 광고 성능 추적 및 최적화에 필수적입니다.
    name: Ad Serving
  - description: >-
      광고 서빙 서버 캐시 관리 API


      ### **중요**

      Serving 서버의 광고 또는 추천 관련 캐시 데이터를 직접 조작하는 경우, Ad Manager를 통해 광고 또는 추천 데이터를
      **동시에 수정하지 않을 것을 강력히 권장합니다.**

      Serving 서버에서 수행된 변경 사항은 Ad Manager에 반영되지 않으며,

      이는 **데이터 무결성**을 위협할 수 있습니다.
    name: Cache Management
  - description: 광고 서빙 서버 설정 API
    name: Configuration
  - description: |
      광고 전환, 노출, 클릭 로그를 수신하는 API — 광고 성능 추적 및 최적화에 필수적입니다.
    name: Ad Serving
paths:
  /api/cache/allocations:
    delete:
      tags:
        - Cache Management
      summary: Delete Allocations
      description: |-
        ## 할당 삭제

        캐시에서 할당 정보를 제거합니다. 대상은 요청 본문에 있는 `(cid, pid)` 쌍 목록으로 식별됩니다.
      requestBody:
        content:
          application/json:
            schema:
              items:
                items:
                  - type: string
                  - type: string
                maxItems: 2
                minItems: 2
                type: array
              type: array
        required: true
      responses:
        '204':
          description: 성공
        '404':
          description: 할당을 찾을 수 없습니다.
        '500':
          description: 내부 서버 오류.
      security:
        - '': []
components: {}

````