Bumps
List all bumps
Retrieve a paginated list of all bumps created in the store. A bump typically represents an add-on or upsell associated with a product. Use query parameters for pagination.
-
Request Headers:
x-store-id(string, required): The ID of the store making the request.
-
Query Parameters:
limit(integer, optional): Number of bumps per page.page(integer, optional): Page number to retrieve.
-
Response: Returns a list of bumps including details and metadata.
This is useful for managing upsell strategies in an e-commerce setup.
GET
List all bumps
Previous
Create a new bumpCreate a new bump which can be an add-on or upsell product to enhance sales.
- **Request Headers:**
- `x-store-id` (string, required): The ID of the store making the request.
- **Request Body:**
- `title` (string, required): Title of the bump.
- `price` (number, required): Price of the bump in cents.
- `description` (string, optional): Description of the bump.
- `badge_title` (string, optional): Title of the badge for the bump.
- `badge_color` (string, optional): Color of the badge.
- **Response:** The created bump object.
This endpoint facilitates the creation of catchy add-ons for product pages.
Next
List all bumps