使用 API 的 DocuSign 模板收件人角色
DocuSign template recipient roles using API
我正在尝试在我的 .net Web 应用程序中使用基于 DocuSign SOAP 的 API 调用创建一个包含复合模板的信封。
首先,我在我的 DocuSign 帐户中为该模板创建了一个模板和收件人角色。
我可以下载模板并从 DocuSign UI 查看 XML。
在我继续使用模板创建信封之前,我需要为收件人分配特定角色
在 运行 时间。为此,我需要在 运行 时间从模板中检索角色信息。
我正在查看 SOAP/REST API 的 API 调用指南,它允许我检索角色信息,我检查了以下 API 调用..
休息
- 获取模板
香皂
- 请求模板
- RequestTemplateWithDocumentFields
他们没有return收件人角色信息。是否有允许我这样做的 API 电话?
REST Get Template 可以满足您的需求。在 recipients
(例如 signer
)
中的相应节点下,信息将作为 roleName
返回
获取模板
这将检索指定模板的定义。
URL: /accounts/{accountId}/templates/{templateId}
格式:XML、JSON
HTTP 方法:GET
参数:唯一需要的参数是模板 ID。
示例请求正文
GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/templates/{templateId}
X-DocuSign-Authentication:<DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><Integrato
rKey>{integrator_key}</IntegratorKey></DocuSignCredentials>
Accept: application/json
Content-Type: application/json
我正在尝试在我的 .net Web 应用程序中使用基于 DocuSign SOAP 的 API 调用创建一个包含复合模板的信封。 首先,我在我的 DocuSign 帐户中为该模板创建了一个模板和收件人角色。 我可以下载模板并从 DocuSign UI 查看 XML。
在我继续使用模板创建信封之前,我需要为收件人分配特定角色 在 运行 时间。为此,我需要在 运行 时间从模板中检索角色信息。 我正在查看 SOAP/REST API 的 API 调用指南,它允许我检索角色信息,我检查了以下 API 调用..
休息
- 获取模板
香皂
- 请求模板
- RequestTemplateWithDocumentFields
他们没有return收件人角色信息。是否有允许我这样做的 API 电话?
REST Get Template 可以满足您的需求。在 recipients
(例如 signer
)
roleName
返回
获取模板
这将检索指定模板的定义。
URL: /accounts/{accountId}/templates/{templateId}
格式:XML、JSON
HTTP 方法:GET
参数:唯一需要的参数是模板 ID。
示例请求正文
GET https://{server}/restapi/{apiVersion}/accounts/{accountId}/templates/{templateId}
X-DocuSign-Authentication:<DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><Integrato
rKey>{integrator_key}</IntegratorKey></DocuSignCredentials>
Accept: application/json
Content-Type: application/json