Skip to main content
GET
/
v1
/
upsell_funnels
List
curl --request GET \
  --url https://{defaultHost}/v1/upsell_funnels \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/upsell_funnels"
  },
  "data": [
    {
      "id": "15864911-7a47-497c-a25b-4a670f3946a2",
      "object": "upsell_funnel",
      "archived": false,
      "archived_at": null,
      "enabled": false,
      "filter_match_type": null,
      "filter_price_ids": [],
      "filter_product_ids": [],
      "metadata": {},
      "name": "Super Upsell Funnel",
      "priority": 5,
      "discarded_at": null,
      "created_at": 1767909785,
      "updated_at": 1767909785
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

archived
boolean

Only return objects that are archived or not archived.

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.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.