Skip to main content

Count of docs sent

Count of documents sent from a team over a time period.

Make two queries to the GET /document/ endpoint at the start and end of your time period using the 'created_gt' filter. The difference between the values of meta['total_count'] will be your documents-sent count.

Include filters archived=all, nosigners=1 and limit=1 in your query.

example query to get a count of documents created from the start of 2024

/api/v1/document/?group=your-group&limit=1&created_gt=2024-01-01&archived=all&nosigners=1
use a precise time if necessary

/api/v1/document/?group=your-group&limit=1&created_gt=2024-06-01T10:45:25&archived=all&nosigners=1

Go to the Document API reference.