Reputation: 75
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
Upvotes: 0
Views: 107
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