Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Query parameters for listing documents
Optional tags this document should be containerized by. This can be an ID for your user, a project ID, or any other identifier you wish to use to group documents.
Example:
["user_123", "project_123"]
Optional filters to apply to the search. Can be a JSON string or Query object. OR
- Option 1
- Option 2
Example:
{
"AND": [
{
"filterType": "metadata",
"key": "group",
"negate": false,
"value": "jira_users"
},
{
"filterType": "numeric",
"key": "timestamp",
"negate": false,
"numericOperator": ">",
"value": "1742745777"
}
]
}
Whether to include the content field in the response. Warning: This can make responses significantly larger.
Example:
false
Number of items per page
Example:
"10"
Sort order
Available options:
asc
, desc
Example:
"desc"
Page number to fetch
Example:
"1"
Field to sort by
Available options:
createdAt
, updatedAt
Example:
"createdAt"