View Source DocuSign.Api.TemplateDocuments (DocuSign v1.2.0)
API calls for all endpoints tagged TemplateDocuments
.
Summary
Functions
Deletes documents from a template.
This method deletes one or more documents from an existing template. To delete a document, use only the relevant parts of the envelopeDefinition
. For example, this request body specifies that you want to delete the document whose documentId
is "1". text { "documents": [ { "documentId": "1" } ] }
Gets PDF documents from a template.
This method retrieves one or more PDF documents from the template that you specify. You can specify the ID of the document to retrieve, or pass in the value combined
to retrieve all documents in the template as a single PDF file.
Gets a list of documents associated with a template. Retrieves a list of documents associated with the specified template.
Updates a template document. This methods updates an existing template document.
Adds documents to a template document. Adds one or more documents to an existing template document.
Functions
documents_delete_template_documents(connection, account_id, template_id, opts \\ [])
View Source@spec documents_delete_template_documents( Tesla.Env.client(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.TemplateDocumentsResult.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Deletes documents from a template.
This method deletes one or more documents from an existing template. To delete a document, use only the relevant parts of the envelopeDefinition
. For example, this request body specifies that you want to delete the document whose documentId
is "1". text { "documents": [ { "documentId": "1" } ] }
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.template_id
(String.t): The ID of the template.opts
(keyword): Optional parameters:body
(EnvelopeDefinition):
Returns
{:ok, DocuSign.Model.TemplateDocumentsResult.t}
on success{:error, Tesla.Env.t}
on failure
documents_get_template_document(connection, account_id, document_id, template_id, opts \\ [])
View Source@spec documents_get_template_document( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.ErrorDetails.t()} | {:ok, String.t()} | {:error, Tesla.Env.t()}
Gets PDF documents from a template.
This method retrieves one or more PDF documents from the template that you specify. You can specify the ID of the document to retrieve, or pass in the value combined
to retrieve all documents in the template as a single PDF file.
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.document_id
(String.t): The unique ID of the document within the envelope. Unlike other IDs in the eSignature API, you specify thedocumentId
yourself. Typically the first document has the ID1
, the second document2
, and so on, but you can use any numbering scheme that fits within a 32-bit signed integer (1 through 2147483647). Tab objects have adocumentId
property that specifies the document on which to place the tab.template_id
(String.t): The ID of the template.opts
(keyword): Optional parameters:encrypt
(String.t): When true, the PDF bytes returned in the response are encrypted for all the key managers configured on your DocuSign account. You can decrypt the documents by using the Key Manager DecryptDocument API method. For more information about Key Manager, see the DocuSign Security Appliance Installation Guide that your organization received from DocuSign.:show_changes
(String.t): When true, any document fields that a recipient changed are highlighted in yellow in the returned PDF document, and optional signatures or initials are outlined in red.
Returns
{:ok, String.t}
on success{:error, Tesla.Env.t}
on failure
documents_get_template_documents(connection, account_id, template_id, opts \\ [])
View Source@spec documents_get_template_documents( Tesla.Env.client(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.TemplateDocumentsResult.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Gets a list of documents associated with a template. Retrieves a list of documents associated with the specified template.
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.template_id
(String.t): The ID of the template.opts
(keyword): Optional parameters:include_tabs
(String.t): Reserved for DocuSign.
Returns
{:ok, DocuSign.Model.TemplateDocumentsResult.t}
on success{:error, Tesla.Env.t}
on failure
documents_put_template_document(connection, account_id, document_id, template_id, opts \\ [])
View Source@spec documents_put_template_document( Tesla.Env.client(), String.t(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.EnvelopeDocument.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Updates a template document. This methods updates an existing template document.
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.document_id
(String.t): The unique ID of the document within the envelope. Unlike other IDs in the eSignature API, you specify thedocumentId
yourself. Typically the first document has the ID1
, the second document2
, and so on, but you can use any numbering scheme that fits within a 32-bit signed integer (1 through 2147483647). Tab objects have adocumentId
property that specifies the document on which to place the tab.template_id
(String.t): The ID of the template.opts
(keyword): Optional parameters:is_envelope_definition
(String.t)::body
(EnvelopeDefinition):
Returns
{:ok, DocuSign.Model.EnvelopeDocument.t}
on success{:error, Tesla.Env.t}
on failure
documents_put_template_documents(connection, account_id, template_id, opts \\ [])
View Source@spec documents_put_template_documents( Tesla.Env.client(), String.t(), String.t(), keyword() ) :: {:ok, DocuSign.Model.TemplateDocumentsResult.t()} | {:ok, DocuSign.Model.ErrorDetails.t()} | {:error, Tesla.Env.t()}
Adds documents to a template document. Adds one or more documents to an existing template document.
Parameters
connection
(DocuSign.Connection): Connection to serveraccount_id
(String.t): The external account number (int) or account ID GUID.template_id
(String.t): The ID of the template.opts
(keyword): Optional parameters:body
(EnvelopeDefinition):
Returns
{:ok, DocuSign.Model.TemplateDocumentsResult.t}
on success{:error, Tesla.Env.t}
on failure