list_users
Retrieve a paginated list of BoldSign users with optional search filtering to find specific team members or contacts in your e-signature platform.
Instructions
Retrieves a paginated list of BoldSign users, with optional filtering by a search term.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | Yes | ||
pageSize | Yes | ||
search | No | Optional. A string used to filter the user list. The API will return contacts whose details contain this search term. |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"maximum": 9007199254740991,
"minimum": 1,
"type": "integer"
},
"pageSize": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Optional. A string used to filter the user list. The API will return contacts whose details contain this search term."
}
},
"required": [
"pageSize",
"page"
],
"type": "object"
}