RemoveUserFromAccount
Removes a user from an account
Stored Procedure-Specific Information
To remove a user from the account, you must specify the Email parameter.
The following example shows how to remove a user from the account.
EXECUTE RemoveUserFromAccount Email='[email protected]';
Input
| Name | Type | Required | Description |
| String | True | The email of the user to be removed from the account. |
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. |
| AccountId | String | The ID of the account from which the user was removed. |
| UserId | String | The ID of the removed user. |