``` client = HelloSign::Client.new :api_key => 'SIGN_IN_AND_CREATE_API_KEY_FIRST', :client_id => 'cc91c61d00f8bb2ece1428035716b', :client_secret => '1d14434088507ffa390e6f5528465' client.oauth_create_account :email_address => 'jill@example.com' ``` Should return a similar response: ``` { "account": { "account_id": "b4680b45053c7601ca1eee3b126eca6b2b0a0219", "email_address": "jill@example.com", "callback_url": null, "role_code": null }, "oauth_data": { "access_token": "NWNiOTMxOGFkOGVjMDhhNTAxZN2NkNjgxMjMwOWJiYTEzZTBmZGUzMjMThhMzYyMzc=", "token_type": "Bearer", "refresh_token": "hNTI2MTFmM2VmZDQxZTZjOWRmZmFjZmVmMGMyNGFjMzI2MGI5YzgzNmE3", "expires_in": 86400 // in seconds } } ``` Confirmed to only return the email address returned in the response shows the app owner's email address NOT the newly created OAuth account as expected.