API reference
List assets
GET
/v1/storage/assetsAuthorization
bearerAuth AuthorizationBearer <token>
OAuth2 access token issued by Ecomiq Auth.
In: header
Query Parameters
limit?integer
Maximum number of results to return.
Format
int32cursor?string
Opaque cursor from the previous response. Omit it on the first page.
search?string
Free-text filter. Which fields it covers depends on the resource.
sortBy?string
Field to sort by. Accepted values depend on the resource.
sortDirection?string
Sort direction: asc or desc.
Value in
- "asc"
- "desc"
directory?string
mimeType?string
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/storage/assets"{ "data": [ { "id": "string", "fileName": "string", "publicUrl": "string", "contentType": "string", "size": 0, "width": null, "height": null, "altText": null, "directory": "string", "metadata": { "property1": "string", "property2": "string" }, "createdOn": "2019-08-24T14:15:22Z" } ], "hasNextPage": true, "nextCursor": null, "totalCount": null}