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

# Delete velocity bucket

> Manually resets the current utilization for a given card and rule by deleting its velocity bucket data.
Note that this is separate from automatic interval expiry.




## OpenAPI

````yaml json-files/velocity-buckets-v1.openapi.json delete /v1/velocity-buckets
openapi: 3.0.3
info:
  title: Velocity buckets API
  version: 1.0.0
servers:
  - url: https://api.{{tenant}}.ext-uat1-sandbox.mycore.enfuce.com/processor
    description: UAT Sandbox
  - url: https://api.{{tenant}}.eu.live.prod.mycore.enfuce.com/processor
    description: Production
security: []
tags:
  - name: Velocity buckets
paths:
  /v1/velocity-buckets:
    delete:
      tags:
        - Velocity buckets
      description: >
        Manually resets the current utilization for a given card and rule by
        deleting its velocity bucket data.

        Note that this is separate from automatic interval expiry.
      operationId: deleteVelocityBucket
      parameters:
        - $ref: '#/components/parameters/CardId'
        - name: rule-id
          in: query
          required: true
          schema:
            type: integer
            format: int64
          description: Id of the rule.
          example: 1234
      responses:
        '204':
          description: Successful operation
components:
  parameters:
    CardId:
      name: card-id
      in: query
      required: true
      schema:
        $ref: '#/components/schemas/uuid'
      description: Id of the card.
      example: a8d8374f-0fd2-444d-a331-c345bf4948da
  schemas:
    uuid:
      type: string
      format: uuid

````