Skip to main content
JMTest
New Voice
New Voice
January 10, 2024

How to clone an account via REST API

  • January 10, 2024
  • 1 reply
  • 134 views

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"
}
}

 

1 reply

Inbar.Gazit
Docusign Employee
Docusign Employee
April 23, 2024

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.