add_template_collaborator
Enable collaborative editing of contract templates by generating HTTPS links and sending invitation emails to collaborators using the MCP Server for eSignatures tool.
Instructions
Creates a HTTPS link for editing a contract template; sends an invitation email if an email is provided..
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Collaborator's email; triggers an invitation email when provided | ||
name | No | Collaborator's name | |
template_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "Collaborator's email; triggers an invitation email when provided",
"type": "string"
},
"name": {
"description": "Collaborator's name",
"type": "string"
},
"template_id": {
"type": "string"
}
},
"required": [
"template_id"
],
"type": "object"
}