Query Deactivated Users
Retrieve the list of deactivated user IDs, returning a list of user IDs that have been initiated for deactivation.
tip
The returned list includes users who are still in the process of deactivation. To receive the deactivation result, use the User Deactivation and Activation Status Callback.
Request Method
POST: https://data center domain/user/deactivate/query.json
Signature Rule: All server API requests must undergo rule verification. For details, refer to API Request Signature.
Rate Limit: 100 requests per second
Body Parameters
The HTTP request body data format is application/x-www-form-urlencoded
, supporting the following HTTP form parameters:
Parameter | Type | Required | Description |
---|---|---|---|
pageNo | Number | No | The current page number when paginating the deactivated user list, default is 1, minimum is 1. |
pageSize | Number | No | The number of rows per page when paginating the deactivated user list, default is 50, minimum is 1, maximum is 50. |
Request Example
POST /user/deactivate/query.json HTTP/1.1
Host: api.rong-api.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1408710653491
Signature: 45beb7cc7307889a8e711219a47b7cf6a5b000e8
Content-Type: application/x-www-form-urlencoded
X-Request-ID: XXXXXXXXXXXXXXXXXXXXXXXXXXXX(max length 36)
pageSize=50&pageNo=1
Response
The HTTP response body contains a JSON object with the following structure:
Return Value | Return Type | Description |
---|---|---|
code | Number | Return code, 200 is normal. |
users | Array of Strings | List of deactivated user IDs |
Response Example
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
X-Request-ID: XXXXXXXXXXXXXXXXXXXXXXXXXXXX
{"code":200,"users":["uid1","uid2"]}