Chat9
APIDocuments

List Documents Route

List documents for current user's tenant (protected JWT).

GET
/documents
/documents

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

curl -X GET "https://api.getchat9.live/documents" \
  -H "Authorization: Bearer <token>"

Successful Response

{
  "documents": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "filename": "string",
      "file_type": "string",
      "status": "string",
      "created_at": "2019-08-24T14:15:22Z",
      "updated_at": "2019-08-24T14:15:22Z",
      "health_status": {}
    }
  ]
}