Documents
List all draft documents
This method will list all draft documents belonging to the current user.
post/documents.drafts
Request body
Example request
{
"limit": 25,
"sort": "updatedAt",
"direction": "DESC",
"dateFilter": "month"
}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
}
}