Skip to main content
Glama

cancel_envelope

Cancel a sent digital signature envelope and notify signers. Use this tool to stop the signing process for a specific envelope.

Instructions

Cancel a sent envelope. Signers will be notified.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envelopeIdYesEnvelope UUID

Implementation Reference

  • The actual API call implementation for canceling an envelope.
    export function cancelEnvelope(creds, envelopeId) {
      return apiCall('POST', `/api/envelopes/${envelopeId}/cancel`, creds);
    }
  • src/index.js:263-275 (registration)
    Registration of the cancel_envelope tool and its handler logic which calls the API helper.
    server.tool(
      'cancel_envelope',
      'Cancel a sent envelope. Signers will be notified.',
      {
        envelopeId: z.string().describe('Envelope UUID'),
      },
      async ({ envelopeId }) => {
        try {
          const data = await api.cancelEnvelope(creds, envelopeId);
          return result(data);
        } catch (err) {
          return errorResult(err);
        }

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/davidsimoes/digisign-mcp'

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