Skip to main content

Need to clone a DocuSign account via the API? Here’s an example...

 

POST method to {{Admin Base URL}}/v1/organizations/{{Org ID}}/assetGroups/accountClone

 

Body:

{
"sourceAccount": {
"id": "624e3e00-xxxx-xxxx-xxxx-43918c520dab"
},
"targetAccount": {
"name": "My Cloned Account",
"admin": {
"firstName": "Global",
"lastName": "Admin",
"email": "admin@asdfasdffdsa.com"
},
"region": "NA"
}
}

 

https://developers.docusign.com/docs/admin-api/how-to/clone-account/ has step-by-step and code in 8 langs showing how to do this. 


Reply