Skip to main content
GET
/
v1
/
downloads
List
curl --request GET \
  --url https://{defaultHost}/v1/downloads \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/downloads"
  },
  "data": [
    {
      "id": "0117d76a-a7fd-4931-92b2-db8a068b16c0",
      "object": "download",
      "alt": null,
      "archived": false,
      "archived_at": null,
      "name": null,
      "title": null,
      "url": null,
      "media": "65d7a44d-3442-4d42-8e42-d405016e0765",
      "product": "b0c1c30c-866e-40ba-99db-e425b5e2a164",
      "created_at": 1767909697,
      "updated_at": 1767909697
    }
  ]
}

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.

customer_ids[]
string[]

Only return objects that belong to the given customers.

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.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.