IntroductionBefore you beginTerminologyGetting started
Authorization
Accounts
Entities
User accounts
GroupsFilesFoldersTemplatesEmail templatesAppsErrors

Create a new account

You can have your application automatically create accounts for your clients in SmartVault.
This saves them the extra step of having to go through the sign up process themselves.

After adding the account, if everything went well, the email specified will receive an email as confirmation of the new account created.

Remember you'll need to use the client token while using the create new account endpoint. Also, the info you add while the user is logged in will be wiped out once the user signs out of the account.

endpoints
POST/auto/snew



Body parameters


Show body params



Request


Headers:
Content-Type:application/json
Authorization:Basic {{client_token}}
Accept:application/json
Body:
{
"email": "sally.cpa@smartvault.com",
"first_name": "sally",
"last_name": "cpa",
"account_name": "sallysfirm",
"email_validated": true
}

Response


Returns the user_id, account_name and account_id of the newly created account.

Show success object


Returns an error object if the account name specified on the request body already exists.

Show error object