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

# Delete Bump

> Delete a bump by its `id`, ensuring store ownership with `x-store-id`. This effectively removes the bump from store records.



## OpenAPI

````yaml /api-reference/growth-api.json delete /bumps/{id}
openapi: 3.0.0
info:
  title: Growth API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
paths:
  /bumps/{id}:
    delete:
      tags:
        - Bumps
      summary: Delete Bump
      description: >-
        Delete a bump by its `id`, ensuring store ownership with `x-store-id`.
        This effectively removes the bump from store records.
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the bump.
          schema:
            type: string
      responses:
        '200':
          description: Bump deleted successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteBumpResponse'
      security:
        - storeIdHeader: []
components:
  schemas:
    DeleteBumpResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            deleted:
              type: boolean
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````