Pagination
Status: Not currently enabled for list endpoints.
Currently, API list endpoints (such as GET /envelopes) return all available resources in a single response.
Future Implementation
In future versions, pagination will be implemented to handle large datasets efficiently. We plan to use a continuation token-based approach.
Planned Request Format
GET /api/envelopes?maxSearchResults=50&continuationToken=...
Planned Response Format
{
"items": [...],
"continuationToken": "next-page-token"
}
Please check the changelog for updates when this feature becomes available.