Path: /api/v1/user/delete
Method: POST
Description: Delete profiles. Allowed to delete in batch with a maximum batch size of 100 profiles per deletion.
Optional Body parameters can be omitted, and the parameter format is JSON.
Name | Type | Necessary | Default | Example | Description |
---|---|---|---|---|---|
user_ids | list | YES | - | ["xxx"] ["xxx","yyy","zzz"] | User id being deleted, format: array |
//Operation succeeded
{
"code":0,
"data":{},
"msg":"success"
}
//Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}