cURL
curl --request GET \ --url https://app.aigmented.com/api/v1/files/list \ --header 'Authorization: Bearer <token>'
{ "message": "List of files", "data": [ { "id": 123, "name": "<string>", "sourceName": "<string>", "type": "<string>", "status": "new", "uploaded_at": "2023-11-07T05:31:56Z", "user": { "id": "<string>", "email": "<string>", "name": "<string>" } } ] }
Returns all non-deleted files belonging to the authenticated team that have been processed (status is not new). File content and internal URLs are omitted.
new
Pass your API key as a Bearer token. Example: Authorization: Bearer sk-xxxxxxxxxxxx
Authorization: Bearer sk-xxxxxxxxxxxx
List of files
"List of files"
Show child attributes