• Create a user account and parent organization. This endpoint is for creating a new organization. Users joining an existing organization should be invited, and follow their invitation links/instructions to create their accounts.

    import {Profiles} from '@verdocs/js-sdk/Users';

    const newAccount = await Profiles.createBusinessAccount({
    orgName: 'ORG', email: 'a@b.com', password: '12345678', firstName: 'FIRST', lastName: 'LAST'
    });

    Returns Promise<{
        organization: IOrganization;
        profile: IProfile;
    }>