GET
/
api
/
v3
/
documents
/
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Complete documents data model