Delete Account List
DeleteUsersList¶
Description: Deletes multiple user accounts by their login IDs. If any user cannot be deleted, the process halts and returns an error.
Request Parameters¶
| Name | Type | Required | Description |
|---|---|---|---|
| logins | array | Yes | Array of integer login IDs to delete |
Request Example¶
{
"logins": [102030, 102031, 102032]
}
Response Parameters¶
| Name | Type | Description |
|---|---|---|
| data | string | Returns "OK" if all were deleted |
Response Example¶
{
"data": "OK"
}
⚠️ If one of the users cannot be deleted, the method will return:
{ "error": "DELETE_USER_ERROR" }