Docusign嵌入模板编辑视图

时间:2019-05-08 06:53:57

标签: php docusignapi

我正在尝试在应用程序中嵌入模板编辑视图。 API Reference

以下是使用php客户端检索模板编辑视图网址的源代码

$templatesApi = new TemplatesApi($apiClient);

# Generate the embed template edit view
$returnUrlRequest = new ReturnUrlRequest();
$returnUrlRequest->setReturnUrl('http://localhost:8080/success');

$editViewUrl = $templatesApi->createEditView($this->getAccountId(), $templateId, $returnUrlRequest)->getUrl();

&它返回到编辑视图网址下方

  

https://demo.docusign.net/Member/StartInSession.aspx?StartConsole=1&t=3c5a3d84...&DocuEnvelope=[template_id]

但是当我加载上面的URL时,它将重定向到docusign主页。我希望它显示模板编辑视图的位置。

任何帮助表示赞赏。预先感谢

1 个答案:

答案 0 :(得分:0)

看来templateId出现问题,您需要确保为API提供正确的templateId。这看起来应该像GUID,但您在此处显示的URL没有。