Skip to main content
GET
/
v1
/
upsells
List
curl --request GET \
  --url https://{defaultHost}/v1/upsells \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/upsells"
  },
  "data": [
    {
      "id": "58bdc216-2415-41c6-bddc-df05ee1ed2b2",
      "object": "upsell",
      "amount_off": 500,
      "duplicate_purchase_behavior": "allow",
      "fee_description": "Upsell Offer",
      "metadata": {},
      "percent_off": null,
      "replacement_behavior": "none",
      "step": "initial",
      "price": "e88a0199-0770-4239-993b-c9d64590164e",
      "upsell_funnel": "75feb18e-986e-46bb-bedf-155c10b476e2",
      "discarded_at": null,
      "created_at": 1767909786,
      "updated_at": 1767909786
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

product_ids[]
string[]

Only return objects that belong to the given products.

upsell_funnel_ids[]
string[]

Only return objects that belong to the given upsell funnels.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.