Вам нужна помощь, как создать шаблон, используя DocuSign API, C#, XMLКак создать шаблон с помощью API вызова DocuSign в C#, XML
Я получаю сообщение об ошибке, как - «(404) Bad Запрос»
URL = https://demo.docusign.net/restapi/v2/accounts/ {......}/шаблоны
string requestBody =
"<envelopeDefinition xmlns=\"http://www.docusign.com/restapi\">" +
"<emailSubject>Please sign this Document</emailSubject>" +
"<status>sent</status>" +
// add document(s)
"<documents>" +
"<document>" +
"<documentId>1</documentId>" +
"<name>document.pdf</name>" +
"</document>" +
"</documents>" +
// add recipient(s)
"<recipients>" +
"<signers>" +
"<signer>" +
"<recipientId>1</recipientId>" +
"<email>[email protected]</email>" +
"<name>Som Smith</name>" +
"<roleName>Signer</roleName>" +
"<tabs>" +
"<signHereTabs>" +
"<signHere>" +
"<xPosition>70</xPosition>" +
"<yPosition>560</yPosition>" +
"<documentId>1</documentId>" +
"<pageNumber>2</pageNumber>" +
"</signHere>" +
"</signHereTabs>" +
"</tabs>" +
"</signer>" +
"</signers>" +
"</recipients>" +
"<envelopeTemplateDefinition>" +
"<name>TestTemplate</name>" +
"<owner>" +
"<email>[email protected]</email>" +
"</owner>" +
"</envelopeTemplateDefinition>" +
"</envelopeDefinition>";
сообщение об ошибке Ответ я получаю
<errorDetails xmlns="http://www.docusign.com/restapi" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">errorCode>UNSPECIFIED_ERROR</errorCode><message>There is an error in XML document (1, 2).</message></errorDetails>
Большое значение