Nik D
Nik D

Reputation: 75

How to update destination url via api in Docusign

I want to update the default destination url via api how can I do that? I did try to update it in UI and sent a request to get this brand. But there is no details about this url that I've just added.

Thanks

enter image description here enter image description here

Upvotes: 0

Views: 107

Answers (1)

Andrew
Andrew

Reputation: 4441

DocuSign API Documentation - AccountBrands: update

You should be able to use landingPages for that (empty string to return to default behavior)

"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/"
  }
],

Upvotes: 2

Related Questions