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": "66581df7-2101-4283-acc7-aeff74e08f34",
      "object": "upsell",
      "amount_off": 500,
      "duplicate_purchase_behavior": "allow",
      "fee_description": "Upsell Offer",
      "metadata": {},
      "percent_off": null,
      "replacement_behavior": "none",
      "step": "initial",
      "price": "8892052f-a656-4996-a78c-9d62adcc7970",
      "upsell_funnel": "cc39ed95-8bfc-4b3f-abbd-dd96a83b34cf",
      "discarded_at": null,
      "created_at": 1772113069,
      "updated_at": 1772113069
    }
  ]
}

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.