- 请求体不能为空,必须包含 accountIds 字段。可以传空数组 {},但不能完全不传请求体。 - accountIds 数组不能为空,必须包含至少一个账号ID。 - 可以同时传入多个账号ID进行批量删除。 - 该操作具有原子性,如果提供的账号ID列表中有一个不存在,则整个删除操作都会失败,不会删除任何账号。
{ "accountIds":[ 28842 ] }
curl --location --request POST '/api/v1/account/del' \ --header 'Content-Type: application/json' \ --data-raw '{ "accountIds":[ 28842 ] }'
{ "code": 0, "msg": "string", "requestId": "string", "timestamp": 0, "data": true }