Page History
Deletes specified users. Check "data" example below.
Parameters
Name | Type | Description |
data required | object | information about specified users |
cb optional | function | callback function |
Example
Code Block | ||
---|---|---|
| ||
this.userDelete = function(data, cb) { return _request({ method: 'POST', url: '/user/delete', data: data, callback: cb }); }; |
Example Result
Code Block | ||
---|---|---|
| ||
{ ids: ["12345678-1234-1234-1234-123456789098"] } |