cURL
curl --request GET \ --url https://api.nugen.in/api/v3/documents/ \ --header 'Authorization: Bearer <token>'
{ "documents": [ { "id": "<string>", "filename": "<string>", "type": "<string>", "size": 123, "uploadDate": "<string>", "status": "Processing", "categories": [ "<string>" ], "uploader": "<string>", "processingProgress": 123 } ], "categories": [ { "name": "<string>", "count": 123 } ] }
List all documents with their details and categories.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Complete documents data model
Was this page helpful?