Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/299.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在python中集成DocuSign的EnvelopeViews:createSender REST api_Python_Flask_Docusignapi - Fatal编程技术网

在python中集成DocuSign的EnvelopeViews:createSender REST api

在python中集成DocuSign的EnvelopeViews:createSender REST api,python,flask,docusignapi,Python,Flask,Docusignapi,pydocusign.exceptions.DocuSignException:DocuSign请求失败:在预期代码201时获取返回的代码404;信息: 我想用UI重定向到sender视图 正在尝试从上面的pydocusign使用 pydocusign库不是来自DocuSign。欢迎您使用它,但我们文档人员不能提供有关它的建议 相反,我建议你检查一下 有一个包含许多示例工作流的。演示如何创建嵌入式签名仪式 补充 关于嵌入式发送,请参见我添加了嵌入式发送的链接欢迎来到StackOverflow!请

pydocusign.exceptions.DocuSignException:DocuSign请求失败:在预期代码201时获取返回的代码404;信息:

我想用UI重定向到sender视图


正在尝试从上面的pydocusign使用

pydocusign库不是来自DocuSign。欢迎您使用它,但我们文档人员不能提供有关它的建议

相反,我建议你检查一下

有一个包含许多示例工作流的。演示如何创建嵌入式签名仪式

补充
关于嵌入式发送,请参见

我添加了嵌入式发送的链接欢迎来到StackOverflow!请接受检查您的问题的最佳答案。此外,请将您在网站上阅读的所有有用答案进行投票。非常感谢。
def sender_edit_view(self, authenticationMethod=None, envelopeId='',
                            returnUrl=''):
    if not self.account_url:
        self.login_information()
    url = '/accounts/{accountId}/envelopes/{envelopeId}/views/edit' \
              .format(accountId=self.account_id,
                      envelopeId=envelopeId)
    if authenticationMethod is None:
        authenticationMethod = 'none'
    data = {
        'authenticationMethod': authenticationMethod,
        'returnUrl': returnUrl,
    }
    return self.post(url, data=data, expected_status_code=201)