Skip to main content
GET
/
v1
/
vault
/
documents
List Documents
curl --request GET \
  --url https://api.scoutline.com/v1/vault/documents \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "filename": "<string>",
    "size": 123,
    "uploadedAt": "2023-11-07T05:31:56Z",
    "status": "indexed"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer
default:100

The maximum number of documents to return

Response

200 - application/json

A list of documents

id
string
filename
string
size
integer
uploadedAt
string<date-time>
status
enum<string>
Available options:
indexed,
pending,
error