CreateUser
Creates a new user
Stored Procedure-Specific Information
To create a new user, you must specify the following parameters: Email, FirstName, LastName, and Locale.
Note: This user appears in the Users table after you add the user to the account using the AddUserToAccount stored procedure.
The following example shows how to create a new user.
EXECUTE CreateUser email='[email protected]', firstname='jon', lastname='doe', locale='en-US';
Input
| Name | Type | Required | Description |
| String | True | The email of the user. | |
| FirstName | String | True | The first name of the user. |
| LastName | String | True | The last name of the user. |
| Locale | String | True | The locale of the user. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether or not the operation executed successfully. |
| Details | String | Any extra details on the operation's execution. |
| Id | String | The ID of the created user. |
| Locale | String | The locale of the created user. |