list_document_groups
Retrieve document groups with basic information for organizing and managing e-signature documents using pagination controls.
Instructions
Get simplified list of document groups with basic information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of document groups to return (default: 50, max: 50) | |
| offset | No | Number of document groups to skip for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of document groups to return (default: 50, max: 50)",
"maximum": 50,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Number of document groups to skip for pagination (default: 0)",
"minimum": 0,
"title": "Offset",
"type": "integer"
}
},
"type": "object"
}