action docusign_attachments_get_attachment { label: "Retrieves an envelope attachment from an envelope." description: "Retrieves an envelope attachment from an envelope.\n\n\n\n\nIt's easy to confuse envelope attachments,\nwhich are developer-only files associated with an envelope,\nwith signer attachments.\n\nTo learn about the different types of attachments, see [Attachments](/docs/esign-rest-api/esign101/concepts/documents/attachments/) in the concept guide.\n\n\n\n" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/envelopes/{envelopeId}/attachments/{attachmentId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } attachmentId: { type: "string" } envelopeId: { type: "string" } } required: ["accountId", "attachmentId", "envelopeId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }