Skip to main content
GET
/
api
/
public
/
v1
/
assets
List assets
curl --request GET \
  --url https://{BaseURL}/api/public/v1/assets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "type": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "owner": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "displayName": "<string>",
        "email": "<string>"
      },
      "parentFolder": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      },
      "schedules": [
        {
          "cronExpression": "<string>",
          "timezone": "<string>",
          "nextRunAt": "<string>"
        }
      ],
      "details": {
        "tablePrefix": "<string>",
        "computeProfile": "<string>"
      }
    }
  ],
  "meta": {
    "limit": 50,
    "offset": 1,
    "hasMore": true
  }
}
Returns a page of assets (name, type, owner, folder, schedules) with pagination. Connection secrets and credentials are never included. Use limit and offset to walk the full list.

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:50

Maximum number of assets to return (default 50, max 100).

Required range: 1 <= x <= 100
offset
integer
default:0

Number of assets to skip (for pagination).

Required range: x >= 0

Response

Assets returned.

data
object[]
required
meta
object
required