Interface ITemplateClient
Represents a collection of functions to interact with the API endpoints. The functions perform actions such as sending document sign request from template, deleting a template, listing the templates and so on.
Inherited Members
Namespace: BoldSign.Api
Assembly: BoldSign.Api.dll
Syntax
public interface ITemplateClient : IApiAccessor
Methods
| Improve this Doc View SourceCreateEmbeddedRequestUrl(EmbeddedTemplateRequest)
Embedded send a document for signature using a template.
Declaration
EmbeddedSendCreated CreateEmbeddedRequestUrl(EmbeddedTemplateRequest send = null)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateRequest | send | It contains page,page size and status details. |
Returns
Type | Description |
---|---|
EmbeddedSendCreated | An ApiResponse (DocumentCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedRequestUrlAsync(EmbeddedTemplateRequest)
Embedded send a document for signature using a template.
Declaration
Task<EmbeddedSendCreated> CreateEmbeddedRequestUrlAsync(EmbeddedTemplateRequest send = null)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateRequest | send | It contains page,page size and status details. |
Returns
Type | Description |
---|---|
Task<EmbeddedSendCreated> | Task of ApiResponse (DocumentCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedRequestUrlAsyncWithHttpInfo(EmbeddedTemplateRequest)
Generates a send URL using a template which embeds document sending process into your application.
Declaration
Task<ApiResponse<EmbeddedSendCreated>> CreateEmbeddedRequestUrlAsyncWithHttpInfo(EmbeddedTemplateRequest send = null)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateRequest | send | It contains page,page size and status details. |
Returns
Type | Description |
---|---|
Task<ApiResponse<EmbeddedSendCreated>> | Task of ApiResponse (DocumentCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedRequestUrlWithHttpInfo(EmbeddedTemplateRequest)
Embedded send a document for signature using a template.
Declaration
ApiResponse<EmbeddedSendCreated> CreateEmbeddedRequestUrlWithHttpInfo(EmbeddedTemplateRequest send = null)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateRequest | send | It contains page,page size and status details. |
Returns
Type | Description |
---|---|
ApiResponse<EmbeddedSendCreated> | An ApiResponse (DocumentCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedTemplateUrl(CreateEmbeddedTemplateRequest)
Generates a create URL using a template which embeds template create process into your application.
Declaration
EmbeddedTemplateCreated CreateEmbeddedTemplateUrl(CreateEmbeddedTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateEmbeddedTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
EmbeddedTemplateCreated | Task of ApiResponse (EmbeddedTemplateCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedTemplateUrlAsync(CreateEmbeddedTemplateRequest)
Generates a create URL using a template which embeds template create process into your application.
Declaration
Task<EmbeddedTemplateCreated> CreateEmbeddedTemplateUrlAsync(CreateEmbeddedTemplateRequest createRequest)
Parameters
Type | Name | Description |
---|---|---|
CreateEmbeddedTemplateRequest | createRequest | The create template request. |
Returns
Type | Description |
---|---|
Task<EmbeddedTemplateCreated> | Task of ApiResponse (EmbeddedTemplateCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedTemplateUrlWithHttpInfo(CreateEmbeddedTemplateRequest)
Generates a create URL using a template which embeds template create process into your application.
Declaration
ApiResponse<EmbeddedTemplateCreated> CreateEmbeddedTemplateUrlWithHttpInfo(CreateEmbeddedTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateEmbeddedTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
ApiResponse<EmbeddedTemplateCreated> | Task of ApiResponse (EmbeddedTemplateCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateEmbeddedTemplateUrlWithHttpInfoAsync(CreateEmbeddedTemplateRequest)
Generates a create URL using a template which embeds template create process into your application.
Declaration
Task<ApiResponse<EmbeddedTemplateCreated>> CreateEmbeddedTemplateUrlWithHttpInfoAsync(CreateEmbeddedTemplateRequest createRequest)
Parameters
Type | Name | Description |
---|---|---|
CreateEmbeddedTemplateRequest | createRequest | The create template request. |
Returns
Type | Description |
---|---|
Task<ApiResponse<EmbeddedTemplateCreated>> | Task of ApiResponse (EmbeddedTemplateCreated). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateTemplate(CreateTemplateRequest)
Creates a template.
Declaration
TemplateCreated CreateTemplate(CreateTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
TemplateCreated | Template Created. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateTemplateAsync(CreateTemplateRequest)
Creates a template.
Declaration
Task<TemplateCreated> CreateTemplateAsync(CreateTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
Task<TemplateCreated> | Template created. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateTemplateWithHttpInfo(CreateTemplateRequest)
Creates a template.
Declaration
ApiResponse<TemplateCreated> CreateTemplateWithHttpInfo(CreateTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
ApiResponse<TemplateCreated> | ApiResponse of Template created. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
CreateTemplateWithHttpInfoAsync(CreateTemplateRequest)
Creates a template.
Declaration
Task<ApiResponse<TemplateCreated>> CreateTemplateWithHttpInfoAsync(CreateTemplateRequest createTemplate)
Parameters
Type | Name | Description |
---|---|---|
CreateTemplateRequest | createTemplate | The create template request. |
Returns
Type | Description |
---|---|
Task<ApiResponse<TemplateCreated>> | ApiResponse of Template Created. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
DeleteTemplate(String, String)
Deletes a template with the given template ID.
Declaration
void DeleteTemplate(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | The template id. |
System.String | onBehalfOf | The on behalf of email. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
DeleteTemplateAsync(String, String)
Deletes a template with the given template ID.
Declaration
Task DeleteTemplateAsync(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | The template id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
Task | Task of void |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
DeleteTemplateAsyncWithHttpInfo(String, String)
Deletes a template with the given template ID.
Declaration
Task<ApiResponse<object>> DeleteTemplateAsyncWithHttpInfo(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | The template id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
Task<ApiResponse<System.Object>> | Task of ApiResponse |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
DeleteTemplateWithHttpInfo(String, String)
Deletes a template with the given template ID.
Declaration
ApiResponse<object> DeleteTemplateWithHttpInfo(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | The template id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
ApiResponse<System.Object> | ApiResponse of Object(void) |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
DownloadTemplate(String, String)
Download the template for given template ID.
Declaration
Stream DownloadTemplate(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
Stream | System.IO.Stream. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
DownloadTemplateAsync(String, String)
Download the template for given template ID.
Declaration
Task<Stream> DownloadTemplateAsync(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
Task<Stream> | Task of System.IO.Stream. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
DownloadTemplateAsyncWithHttpInfo(String, String)
Download the template for given template ID.
Declaration
Task<ApiResponse<Stream>> DownloadTemplateAsyncWithHttpInfo(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
Task<ApiResponse<Stream>> | Task of ApiResponse (System.IO.Stream). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
DownloadTemplateWithHttpInfo(String, String)
Download the template for given template ID.
Declaration
ApiResponse<Stream> DownloadTemplateWithHttpInfo(string templateId, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
System.String | onBehalfOf | The on behalf of email. |
Returns
Type | Description |
---|---|
ApiResponse<Stream> | ApiResponse of System.IO.Stream. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
EditTemplate(EditTemplateRequest)
Edit and update a template.
Declaration
void EditTemplate(EditTemplateRequest editTemplate)
Parameters
Type | Name | Description |
---|---|---|
EditTemplateRequest | editTemplate | The edit template request. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
EditTemplateAsync(EditTemplateRequest)
Edit and update a template.
Declaration
Task EditTemplateAsync(EditTemplateRequest editTemplate)
Parameters
Type | Name | Description |
---|---|---|
EditTemplateRequest | editTemplate | The edit template request. |
Returns
Type | Description |
---|---|
Task | A Task. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
EditTemplateWithHttpInfo(EditTemplateRequest)
Edit and update a template.
Declaration
ApiResponse<object> EditTemplateWithHttpInfo(EditTemplateRequest editTemplate)
Parameters
Type | Name | Description |
---|---|---|
EditTemplateRequest | editTemplate | The edit template request. |
Returns
Type | Description |
---|---|
ApiResponse<System.Object> | A Task. |
EditTemplateWithHttpInfoAsync(EditTemplateRequest)
Edit and update a template.
Declaration
Task<ApiResponse<object>> EditTemplateWithHttpInfoAsync(EditTemplateRequest editTemplate)
Parameters
Type | Name | Description |
---|---|---|
EditTemplateRequest | editTemplate | The edit template request. |
Returns
Type | Description |
---|---|
Task<ApiResponse<System.Object>> | A Task. |
GetEmbeddedTemplateEditUrl(EmbeddedTemplateEditRequest)
Generates a edit embed URL using a template id which embeds template edit process into your application.
Declaration
EmbeddedTemplateEdited GetEmbeddedTemplateEditUrl(EmbeddedTemplateEditRequest embedTemplateEdit)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateEditRequest | embedTemplateEdit | The embed template edit request. |
Returns
Type | Description |
---|---|
EmbeddedTemplateEdited | Task of ApiResponse (EmbeddedTemplateEdited). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetEmbeddedTemplateEditUrlAsync(EmbeddedTemplateEditRequest)
Generates a edit embed URL using a template id which embeds template edit process into your application.
Declaration
Task<EmbeddedTemplateEdited> GetEmbeddedTemplateEditUrlAsync(EmbeddedTemplateEditRequest embeddedTemplateEditRequest)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateEditRequest | embeddedTemplateEditRequest | The embedded template edit request. |
Returns
Type | Description |
---|---|
Task<EmbeddedTemplateEdited> | Task of ApiResponse (EmbeddedTemplateEdited). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetEmbeddedTemplateEditUrlWithHttpInfo(EmbeddedTemplateEditRequest)
Generates a edit embed URL using a template id which embeds template edit process into your application.
Declaration
ApiResponse<EmbeddedTemplateEdited> GetEmbeddedTemplateEditUrlWithHttpInfo(EmbeddedTemplateEditRequest embedTemplateEdit)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateEditRequest | embedTemplateEdit | The embed template edit request. |
Returns
Type | Description |
---|---|
ApiResponse<EmbeddedTemplateEdited> | Task of ApiResponse (EmbeddedTemplateEdited). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetEmbeddedTemplateEditUrlWithHttpInfoAsync(EmbeddedTemplateEditRequest)
Generates a edit embed URL using a template id which embeds template edit process into your application.
Declaration
Task<ApiResponse<EmbeddedTemplateEdited>> GetEmbeddedTemplateEditUrlWithHttpInfoAsync(EmbeddedTemplateEditRequest embeddedTemplateEditRequest)
Parameters
Type | Name | Description |
---|---|---|
EmbeddedTemplateEditRequest | embeddedTemplateEditRequest | The embedded template edit request. |
Returns
Type | Description |
---|---|
Task<ApiResponse<EmbeddedTemplateEdited>> | Task of ApiResponse (EmbeddedTemplateEdited). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetProperties(String)
Get summary of the template for the given template ID.
Declaration
TemplateProperties GetProperties(string templateId)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
Returns
Type | Description |
---|---|
TemplateProperties | TemplateProperties. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetPropertiesAsync(String)
Get summary of the template for the given template ID.
Declaration
Task<TemplateProperties> GetPropertiesAsync(string templateId)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
Returns
Type | Description |
---|---|
Task<TemplateProperties> | Task of TemplateProperties. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetPropertiesAsyncWithHttpInfo(String)
Get summary of the template for the given template ID.
Declaration
Task<ApiResponse<TemplateProperties>> GetPropertiesAsyncWithHttpInfo(string templateId)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
Returns
Type | Description |
---|---|
Task<ApiResponse<TemplateProperties>> | Task of ApiResponse (TemplateProperties). |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
GetPropertiesWithHttpInfo(String)
Get summary of the template for the given template ID.
Declaration
ApiResponse<TemplateProperties> GetPropertiesWithHttpInfo(string templateId)
Parameters
Type | Name | Description |
---|---|---|
System.String | templateId | Template Id. |
Returns
Type | Description |
---|---|
ApiResponse<TemplateProperties> | ApiResponse of TemplateProperties. |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call. |
ListTemplates(Int32, Nullable<Int32>, String, Nullable<TemplateType>, List<String>, List<String>, List<String>, Nullable<DateTime>, Nullable<DateTime>, List<String>)
List all the templates created.
Declaration
TemplateRecords ListTemplates(int page, int? pageSize = null, string searchKey = null, TemplateType? templateType = null, List<string> onBehalfOf = null, List<string> createdBy = null, List<string> templateLabels = null, DateTime? startDate = null, DateTime? endDate = null, List<string> brandIds = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | page | Gets or sets the page. |
System.Nullable<System.Int32> | pageSize | Gets or sets the page size. (optional, default to 10) |
System.String | searchKey | |
System.Nullable<TemplateType> | templateType | Gets or sets the templateType. (optional, default to all). |
List<System.String> | onBehalfOf | Gets or sets the on behalf of emails. |
List<System.String> | createdBy | Gets or sets the created by. |
List<System.String> | templateLabels | Gets or sets the template labels. |
System.Nullable<DateTime> | startDate | Gets or sets the start date. |
System.Nullable<DateTime> | endDate | Gets or sets the end date. |
List<System.String> | brandIds | Gets or sets the brandIds. |
Returns
Type | Description |
---|---|
TemplateRecords | TemplateRecords |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
ListTemplatesAsync(Int32, Nullable<Int32>, String, Nullable<TemplateType>, List<String>, List<String>, List<String>, Nullable<DateTime>, Nullable<DateTime>, List<String>)
List all the templates created.
Declaration
Task<TemplateRecords> ListTemplatesAsync(int page, int? pageSize = null, string searchKey = null, TemplateType? templateType = null, List<string> onBehalfOf = null, List<string> createdBy = null, List<string> templateLabels = null, DateTime? startDate = null, DateTime? endDate = null, List<string> brandIds = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | page | Gets or sets the page. |
System.Nullable<System.Int32> | pageSize | Gets or sets the page size. (optional, default to 10) |
System.String | searchKey | |
System.Nullable<TemplateType> | templateType | Gets or sets the templateType. (optional, default to all). |
List<System.String> | onBehalfOf | Gets or sets the on behalf of emails. |
List<System.String> | createdBy | Gets or sets the created by. |
List<System.String> | templateLabels | Gets or sets the template labels. |
System.Nullable<DateTime> | startDate | Gets or sets the start date. |
System.Nullable<DateTime> | endDate | Gets or sets the end date. |
List<System.String> | brandIds | Gets or sets the brandIds. |
Returns
Type | Description |
---|---|
Task<TemplateRecords> | Task of TemplateRecords |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
ListTemplatesAsyncWithHttpInfo(Int32, Nullable<Int32>, String, Nullable<TemplateType>, List<String>, List<String>, List<String>, Nullable<DateTime>, Nullable<DateTime>, List<String>)
List all the templates created.
Declaration
Task<ApiResponse<TemplateRecords>> ListTemplatesAsyncWithHttpInfo(int page, int? pageSize = null, string searchKey = null, TemplateType? templateType = null, List<string> onBehalfOf = null, List<string> createdBy = null, List<string> templateLabels = null, DateTime? startDate = null, DateTime? endDate = null, List<string> brandIds = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | page | Gets or sets the page. |
System.Nullable<System.Int32> | pageSize | Gets or sets the page size. (optional, default to 10) |
System.String | searchKey | |
System.Nullable<TemplateType> | templateType | Gets or sets the templateType. (optional, default to all). |
List<System.String> | onBehalfOf | Gets or sets the on behalf of emails. |
List<System.String> | createdBy | Gets or sets the created by. |
List<System.String> | templateLabels | Gets or sets the template labels. |
System.Nullable<DateTime> | startDate | Gets or sets the start date. |
System.Nullable<DateTime> | endDate | Gets or sets the end date. |
List<System.String> | brandIds | Gets or sets the brandIds. |
Returns
Type | Description |
---|---|
Task<ApiResponse<TemplateRecords>> | Task of ApiResponse (TemplateRecords) |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
ListTemplatesWithHttpInfo(Int32, Nullable<Int32>, String, Nullable<TemplateType>, List<String>, List<String>, List<String>, Nullable<DateTime>, Nullable<DateTime>, List<String>)
List all the templates created.
Declaration
ApiResponse<TemplateRecords> ListTemplatesWithHttpInfo(int page, int? pageSize = null, string searchKey = null, TemplateType? templateType = null, List<string> onBehalfOf = null, List<string> createdBy = null, List<string> templateLabels = null, DateTime? startDate = null, DateTime? endDate = null, List<string> brandIds = null)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | page | Gets or sets the page. |
System.Nullable<System.Int32> | pageSize | Gets or sets the page size. (optional, default to 10) |
System.String | searchKey | |
System.Nullable<TemplateType> | templateType | Gets or sets the templateType. (optional, default to all). |
List<System.String> | onBehalfOf | Gets or sets the on behalf of emails. |
List<System.String> | createdBy | Gets or sets the created by. |
List<System.String> | templateLabels | Gets or sets the template labels. |
System.Nullable<DateTime> | startDate | Gets or sets the start date. |
System.Nullable<DateTime> | endDate | Gets or sets the end date. |
List<System.String> | brandIds | Gets or sets the brandIds. |
Returns
Type | Description |
---|---|
ApiResponse<TemplateRecords> | ApiResponse of TemplateRecords |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
SendUsingTemplate(SendForSignFromTemplate)
Send a document for signature using a Template.
Declaration
DocumentCreated SendUsingTemplate(SendForSignFromTemplate sendForSignFromTemplate = null)
Parameters
Type | Name | Description |
---|---|---|
SendForSignFromTemplate | sendForSignFromTemplate | It contains page,page size and status details. (optional) |
Returns
Type | Description |
---|---|
DocumentCreated | DocumentCreated |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
SendUsingTemplateAsync(SendForSignFromTemplate)
Send a document for signature using a Template.
Declaration
Task<DocumentCreated> SendUsingTemplateAsync(SendForSignFromTemplate sendForSignFromTemplate = null)
Parameters
Type | Name | Description |
---|---|---|
SendForSignFromTemplate | sendForSignFromTemplate | It contains page,page size and status details. (optional) |
Returns
Type | Description |
---|---|
Task<DocumentCreated> | Task of DocumentCreated |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
SendUsingTemplateAsyncWithHttpInfo(SendForSignFromTemplate)
Send a document for signature using a Template.
Declaration
Task<ApiResponse<DocumentCreated>> SendUsingTemplateAsyncWithHttpInfo(SendForSignFromTemplate sendForSignFromTemplate = null)
Parameters
Type | Name | Description |
---|---|---|
SendForSignFromTemplate | sendForSignFromTemplate | It contains page,page size and status details. (optional) |
Returns
Type | Description |
---|---|
Task<ApiResponse<DocumentCreated>> | Task of ApiResponse (DocumentCreated) |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |
SendUsingTemplateWithHttpInfo(SendForSignFromTemplate)
Send a document for signature using a Template.
Declaration
ApiResponse<DocumentCreated> SendUsingTemplateWithHttpInfo(SendForSignFromTemplate sendForSignFromTemplate = null)
Parameters
Type | Name | Description |
---|---|---|
SendForSignFromTemplate | sendForSignFromTemplate | It contains page,page size and status details. (optional) |
Returns
Type | Description |
---|---|
ApiResponse<DocumentCreated> | ApiResponse of DocumentCreated |
Exceptions
Type | Condition |
---|---|
ApiException | Thrown when fails to make API call |