curl --request GET \
--url https://documents.absconsulting.com/v1/files \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"filename": "<string>",
"url": "<string>",
"bytes": 123,
"created_at": 123,
"metadata": {}
}
],
"has_more": true,
"first_id": "<string>",
"last_id": "<string>"
}Returns a list of files.
This endpoint has a rate limit of 120 requests per user per minute.
curl --request GET \
--url https://documents.absconsulting.com/v1/files \
--header 'Authorization: Bearer <token>'{
"object": "<string>",
"data": [
{
"id": "<string>",
"object": "<string>",
"filename": "<string>",
"url": "<string>",
"bytes": 123,
"created_at": 123,
"metadata": {}
}
],
"has_more": true,
"first_id": "<string>",
"last_id": "<string>"
}Bearer token for authentication
The ID of the last object returned in the previous page. Use this parameter to get the next page of results.
The ID of the first object returned in the previous page. Use this parameter to get the previous page of results.
A limit on the number of objects to be returned. Limit can range between 1 and 10,000, and the default is 10,000.
Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
Successful Response
Was this page helpful?