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

# Invalidate elimination bucket

> Invalidates all elimination bucket data for a specific entity, effectively resetting its processor elimination history.



## OpenAPI

````yaml post /elimination.EliminationAnalyser/InvalidateBucket
openapi: 3.0.0
info:
  title: Dynamic routing - OpenAPI 3.0
  description: This the the open API 3.0 specification for the dynamic routing.
  version: 1.0.0
servers: []
security: []
paths:
  /elimination.EliminationAnalyser/InvalidateBucket:
    post:
      tags:
        - Elimination
      summary: Invalidate elimination bucket
      description: >-
        Invalidates all elimination bucket data for a specific entity,
        effectively resetting its processor elimination history.
      operationId: InvalidateBucket
      parameters:
        - name: x-tenant-id
          in: header
          required: true
          schema:
            type: string
          example: public
        - name: x-profile-id
          in: header
          required: true
          schema:
            type: string
          example: pro_WX0giXQnzk2wQJjkKVBX
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
          example: dev_VLzQTxkPq3ALj2mlfiHL4mMtXca4uplOIOLaKEzmWAmNBXZjwsuv5bCLjnf0QYHm
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InvalidateBucketRequest'
      responses:
        '200':
          description: Buckets invalidated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidateBucketResponse'
        '400':
          description: Invalid request parameters
        '500':
          description: Internal server error
components:
  schemas:
    InvalidateBucketRequest:
      type: object
      properties:
        id:
          type: string
          example: merchant1
          description: Entity identifier to invalidate the bucket
      required:
        - id
    InvalidateBucketResponse:
      type: object
      properties:
        status:
          type: string
          description: Status of the invalidate operation
          enum:
            - BUCKET_INVALIDATION_SUCCEEDED
            - BUCKET_INVALIDATION_FAILED
      required:
        - status

````