RemoveUserFromStore
Removes a user from a store.
Stored Procedure-Specific Information
To remove a user from the store, you must specify the following parameters: StoreId and UserId.
The following example shows how to remove a user from the store.
EXECUTE RemoveUserFromStore UserId='bc/account/user/123456', StoreId='bc/account/store/9csrelntug';
Input
| Name | Type | Required | Description |
| StoreId | String | True | The ID of the store. |
| UserId | String | True | The ID of the user to be removed from the store. |
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. |
| StoreId | String | The ID of the store from which the user was removed. |
| UserId | String | The ID of the user removed from the store. |