Dashboard¶
The home page: a stats overview, a folder shortcut list, and a recent-documents table.
GET /document/v1/dashboard¶
Returns everything the home page needs in one call:
{
"signedDocuments": 40,
"pendingSignatures": 5,
"completedThisMonth": 11,
"teamMembers": 6,
"folderCounts": [ { "folderId": 1, "folderName": "Contracts", "count": 14 } ],
"recentDocuments": [ /* same shape as the Documents list — see Documents */ ]
}
| Field | Maps to |
|---|---|
signedDocuments |
"Signed Documents" stat card |
pendingSignatures |
"Pending Signatures" stat card |
completedThisMonth |
"Completed This Month" stat card |
teamMembers |
"Team Members" stat card |
folderCounts |
"Your Folders" section — see Folders for managing them |
recentDocuments |
"Recent Documents" table — see Documents for the full list/filter API this mirrors |
There's no separate endpoint per stat card — this is a single aggregate call, refetched whenever the dashboard loads.