如何在Docusign中通过api更新目标网址

时间:2018-02-12 05:02:37

标签: docusignapi

我想通过api更新默认目标网址,我该怎么办? 我确实尝试在UI中更新它,并发送了一个获取此品牌的请求。但是我没有详细介绍这个网址。

由于

enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

DocuSign API Documentation - AccountBrands: update

您应该可以使用landingPages(空字符串返回默认行为)

"landingPages": [
  {
    "name": "signingComplete",
    "value": "https://www.google.com/"
  },
  {
    "name": "viewingComplete",
    "value": "https://www.google.com/"
  },
  {
    "name": "finishLater",
    "value": "https://www.google.com/"
  },
  {
    "name": "decline",
    "value": "https://www.google.com/"
  },
  {
    "name": "sessionTimeout",
    "value": "https://www.google.com/"
  },
  {
    "name": "failedAuthorization",
    "value": "https://www.google.com/"
  }
],