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": "acf16629-f566-4ae5-be79-2bc75edb8b69",
      "object": "download",
      "alt": null,
      "archived": false,
      "archived_at": null,
      "name": null,
      "title": null,
      "url": null,
      "media": "95a80169-5775-4d1e-b7b3-b5412b4a74d5",
      "product": "3c1a6ac1-8e86-4fc6-aae4-eff1897221d0",
      "created_at": 1769674944,
      "updated_at": 1769674944
    }
  ]
}

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.