> ## 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.

# Update Bump Details

> Update details of a bump, including `title`, `description`, `price`, `badge_title`, and `badge_color`. Uses `x-store-id` for store ownership verification.



## OpenAPI

````yaml /api-reference/growth-api.json patch /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}:
    patch:
      tags:
        - Bumps
      summary: Update Bump Details
      description: >-
        Update details of a bump, including `title`, `description`, `price`,
        `badge_title`, and `badge_color`. Uses `x-store-id` for store ownership
        verification.
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the bump.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBumpRequest'
      responses:
        '200':
          description: Bump updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BumpDetails'
      security:
        - storeIdHeader: []
components:
  schemas:
    UpdateBumpRequest:
      type: object
      properties:
        title:
          type: string
        description:
          type: string
        price:
          type: number
        badge_title:
          type: string
        badge_color:
          type: string
    BumpDetails:
      type: object
      properties:
        id:
          type: string
        store_id:
          type: string
        title:
          type: string
        description:
          type: string
        price:
          type: number
        badge_title:
          type: string
        badge_color:
          type: string
        sales:
          type: integer
        revenue:
          type: number
        created_at:
          type: string
          format: date-time
        deliverables:
          type: array
          items:
            type: object
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````