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": "e9fbcb1c-3c0e-4319-ada4-62434b2781b2",
      "object": "download",
      "alt": null,
      "archived": false,
      "archived_at": null,
      "name": null,
      "title": null,
      "url": null,
      "media": "dea5e568-79e5-42b8-8727-b30fd2b1d8af",
      "product": "da6f01d2-370e-4a4f-b511-285fe6e1478f",
      "variant": null,
      "created_at": 1771429864,
      "updated_at": 1771429864
    }
  ]
}

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.