Get Order Bump
Retrieve one complete order bump by id.
Live get is flat. Draft get is nested under the owner product. A bump still
being set up returns 404 — see
Incomplete items.
Request
Live:
GET /order-bumps/{id}
Draft:
GET /products/{productId}/draft/order-bumps/{id}
There is no live nested GET /products/{productId}/order-bumps/{id}.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
productId | string | Draft only | Owner product UUID. |
id | string | Yes | Order bump UUID. |
Example Request
curl -X GET "https://cart.easy.tools/api/v1/order-bumps/4eebbd13-ee35-4d66-bfec-a9988b63ef75" \
-H "Authorization: Bearer YOUR_API_TOKEN"
Response
Success Response (200)
{
"id": "4eebbd13-ee35-4d66-bfec-a9988b63ef75",
"product_id": "70dbd819-fac2-4dcf-b655-fb925e24410b",
"variant_id": "5272bfcf-4e92-458d-b513-80ca474a16e4",
"name": "Backup recording",
"title": "Add the recording",
"description": "Keep the session afterwards.",
"amount": 4900,
"currency": "usd",
"display_type": "large_thumbnail",
"validity_minutes": null,
"active": true
}
See Order Bump Object.
Error Responses
Bad Request (400)
{
"message": "Invalid order bump ID"
}
Not Found Error (404)
Unknown owner product, unknown bump, or an incomplete overlay item:
{
"message": "Order bump with ID 4eebbd13-ee35-4d66-bfec-a9988b63ef75 not found"
}
Unauthorized Error (401)
{
"message": "Unauthenticated."
}
Forbidden Error (403)
{
"message": "You do not have API access to the requested store."
}