Documents
List all recently viewed documents
This method will list all documents recently viewed by the current user.
post/documents.viewed
Request body
Example request
{
"limit": 25,
"sort": "updatedAt",
"direction": "DESC"
}Response
OK
Example response
{
"data": [
{
"title": "🎉 Welcome to Acme Inc",
"emoji": "🎉",
"text": "…",
"urlId": "hDYep1TPAM",
"collaborators": [
{
"name": "Jane Doe"
}
],
"createdBy": {
"name": "Jane Doe"
},
"updatedBy": {
"name": "Jane Doe"
}
}
],
"pagination": {
"limit": 25
}
}