Parameter | Description |
---|---|
Cursor | A pagination token that indicates which page the next set of results. When included in the response, this cursor means additional items exist in subsequent pages. |
Limit | The maximum number of items to get. |
Return All Pages | Automatically fetch all resources, page by page. |
{
"meta": {
"cursor": <string>,
"count": <int>
},
"data": {
<PRIVATE_FILE_OBJECT>,
<PRIVATE_FILE_OBJECT>,
...
},
"links": {
"self": <string>,
"next": <string>
}
}
Was this page helpful?