boldsign

Official

list_contacts

Retrieve and manage a paginated list of contacts from your BoldSign organization. Filter by search term, specify page number, and choose between personal or organizational contacts for efficient signer detail management.

Instructions

This tool allows you to retrieve a paginated list of contacts from your BoldSign organization. You can specify the page number to navigate through the results, the number of contacts to display per page, an optional search term to filter contacts, and the type of contacts to retrieve (your personal contacts or all organizational contacts). Contacts are primarily used to store signer details, identified by their unique email address, for use when creating and sending documents for signature within the BoldSign application.

Input Schema

NameRequiredDescriptionDefault
contactTypeNoOptional. Filters the list of contacts based on their type. 'MyContacts' retrieves contacts specifically associated with your account, while 'AllContacts' (default) retrieves all accessible contacts within your organization.AllContacts
pageNoRequired. The page number of the contact list to retrieve. Used for pagination to navigate through the list of available contacts.
pageSizeNoOptional. Specifies the maximum number of contact records to be retrieved per page. If not provided, a default page size will be used by the BoldSign API. The value must be between 1 and 100. The default value is 10.
searchKeyNoOptional. A string used to filter the contact list. The API will return contacts whose details contain this search term.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "contactType": { "anyOf": [ { "anyOf": [ { "not": {} }, { "enum": [ "MyContacts", "AllContacts" ], "type": "string" } ] }, { "type": "null" } ], "default": "AllContacts", "description": "Optional. Filters the list of contacts based on their type. 'MyContacts' retrieves contacts specifically associated with your account, while 'AllContacts' (default) retrieves all accessible contacts within your organization." }, "page": { "default": 1, "description": "Required. The page number of the contact list to retrieve. Used for pagination to navigate through the list of available contacts.", "minimum": 1, "type": "integer" }, "pageSize": { "anyOf": [ { "anyOf": [ { "not": {} }, { "maximum": 100, "minimum": 1, "type": "integer" } ] }, { "type": "null" } ], "default": 10, "description": "Optional. Specifies the maximum number of contact records to be retrieved per page. If not provided, a default page size will be used by the BoldSign API. The value must be between 1 and 100. The default value is 10." }, "searchKey": { "anyOf": [ { "anyOf": [ { "not": {} }, { "type": "string" } ] }, { "type": "null" } ], "description": "Optional. A string used to filter the contact list. The API will return contacts whose details contain this search term." } }, "type": "object" }
ID: fb4lmx9gi5