Skip to main content
Glama

remove_template_collaborator

Remove a collaborator from an eSignature template to manage access permissions and maintain template integrity.

Instructions

Removes the template collaborator

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
template_idYesTemplates's GUID.
template_collaborator_idYesCollaborator's GUID.

Implementation Reference

  • Handler implementation for the 'remove_template_collaborator' tool. Makes a POST request to the eSignatures API endpoint to remove a collaborator from a template.
    if name == "remove_template_collaborator": response = await httpxClient.post(f"/api/templates/{arguments.get('template_id')}/collaborators/{arguments.get('template_collaborator_id')}/remove?token={secret_token}") return [types.TextContent(type="text", text=f"Response code: {response.status_code}, response: {response.json()}")]
  • Registration of the 'remove_template_collaborator' tool in the list_tools() decorator method.
    types.Tool( name="remove_template_collaborator", description="Removes the template collaborator", inputSchema=INPUT_SCHEMA_REMOVE_TEMPLATE_COLLABORATOR ),
  • Input schema definition for the 'remove_template_collaborator' tool, specifying required template_id and template_collaborator_id.
    INPUT_SCHEMA_REMOVE_TEMPLATE_COLLABORATOR = { "type": "object", "properties": { "template_id": {"type": "string", "description": "Templates's GUID."}, "template_collaborator_id": {"type": "string", "description": "Collaborator's GUID."} }, "required": ["template_id", "template_collaborator_id"], }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/esignaturescom/mcp-server-esignatures'

If you have feedback or need assistance with the MCP directory API, please join our Discord server