Remove a User from an Account Group
Users can be removed from an account group by means of the AccountGroupRemoveUser API.
Summary
| Attribute | Value |
|---|---|
| Name | AccountGroupRemovedUser |
| Functionality | Removes a user from an account group. |
| Endpoint | https://payments.mppglobal.com/interface/mpp/eDeveloper/V8/eDeveloper.soap.svc/AccountGroupRemoveUser |
| SDK Status | Featured |
Request Parameters
The AccountGroupRemoveUser call passes an AccountGroupRemoveUser data-transfer object, whose parameters and nested objects are listed below.
AccountGroupRemoveUser
| Parameter | Required? | Data Type | Description |
|---|---|---|---|
| AccountGroupRemoveUserInfo | No | AccountGroupRemoveUser | Object containing information on user to be removed. |
AccountGroupRemoveUser
| Parameter | Required? | Data Type | Description |
|---|---|---|---|
| AccountGroupToken | No | String | Unique identifier for the account group, issued at group creation-time. |
| ClientUserId | No | String | Unique identifier for user to be removed from the account group. |
| RemoveFromSubscriptions | No | Boolean | Whether the removed user should also be removed from associated subscriptions. True means that they should. |
JSON Request Example
JSON
[javascript]
{
"AccountGroupRemoveUserInfo" : {
"AccountGroupToken" : "K8sd4300001",
"ClientUserId" : "frederickzocco",
"Currency" : ""
}
}
[/javascript]
"AccountGroupRemoveUserInfo" : {
"AccountGroupToken" : "K8sd4300001",
"ClientUserId" : "frederickzocco",
"Currency" : ""
}
}
[/javascript]