MCPcopy Index your code
hub / github.com/simstudioai/sim / readDocusignJson

Function readDocusignJson

apps/sim/app/api/tools/docusign/route.ts:35–43  ·  view source on GitHub ↗
(
  response: Response,
  label: string
)

Source from the content-addressed store, hash-verified

33}
34
35async function readDocusignJson(
36 response: Response,
37 label: string
38): Promise<Record<string, unknown>> {
39 return readResponseJsonWithLimit<Record<string, unknown>>(response, {
40 maxBytes: MAX_DOCUSIGN_JSON_BYTES,
41 label,
42 })
43}
44
45function docusignError(data: Record<string, unknown>, fallback: string): string {
46 return (

Callers 8

resolveAccountFunction · 0.85
handleSendEnvelopeFunction · 0.85
handleCreateFromTemplateFunction · 0.85
handleGetEnvelopeFunction · 0.85
handleListEnvelopesFunction · 0.85
handleVoidEnvelopeFunction · 0.85
handleListTemplatesFunction · 0.85
handleListRecipientsFunction · 0.85

Calls 1

Tested by

no test coverage detected