Skip to main content
Glama

get_envelope

Retrieve envelope details including status, recipients, and documents for digital signature management.

Instructions

Get detailed information about a specific envelope including status, recipients, documents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
envelopeIdYesEnvelope UUID

Implementation Reference

  • The tool registration and handler implementation for "get_envelope" which calls the api helper.
    server.tool(
      'get_envelope',
      'Get detailed information about a specific envelope including status, recipients, documents.',
      {
        envelopeId: z.string().describe('Envelope UUID'),
      },
      async ({ envelopeId }) => {
        try {
          const data = await api.getEnvelope(creds, envelopeId);
          return result(data);
        } catch (err) {
          return errorResult(err);
        }
      }
    );
  • The underlying API call implementation for fetching an envelope.
    export function getEnvelope(creds, envelopeId) {
      return apiCall('GET', `/api/envelopes/${envelopeId}`, creds);
    }

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