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": "c1c8f647-e63a-4fc0-9b9e-b1369c89bdcf",
      "object": "download",
      "alt": null,
      "archived": false,
      "archived_at": null,
      "name": null,
      "title": null,
      "url": null,
      "media": "a4a444a0-05d8-48a9-8ea6-038f3907405c",
      "product": "ac8de65d-88c1-4db3-89d4-4f1c8fb200cc",
      "created_at": 1770234853,
      "updated_at": 1770234853
    }
  ]
}

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.