Query User Subscription Relationship
You can use this API to query a user's subscription relationship.
Enable the Service
You can enable the service through the RC Console. In the Console, navigate to Chat settings > Chat pricing plans -> Subscription User Status, and enable the service.
Request Method
POST: https://Data Center Domain/user/subscribe/query.json
Signature Rule: All server API requests must follow the signature rule. For details, refer to API Request Signature.
Rate Limit: 100 requests per second
Request Body Parameters
The HTTP request body data format is application/x-www-form-urlencoded
, and supports the following HTTP form parameters:
Parameter | Type | Required | Description |
---|---|---|---|
subType | int | No | Default is 1, which represents status subscription |
userId | String | Yes | Subscriber ID |
pageToken | String | No | Page token, defaults to empty (first page). Set to the pageToken returned from the previous page. |
pageSize | int | No | Default is 200, maximum is 200, minimum is 50. |
Request Example
POST /user/subscribe/update.json HTTP/1.1
Host: api-cn.ronghub.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1408710653491
Signature: 45beb7cc7307889a8e711219a47b7cf6a5b000e8
Content-Type: application/x-www-form-urlencoded
X-Request-ID: XXXXXXXXXXXXXXXXXXXXXXXXXXXX(最大长度36)
userId=uid1
Response
Field | Type | Description |
---|---|---|
code | Int | Return code, 200 indicates success. |
hasNext | boolean | Whether there is a next page |
subscriptions | List<UserSubscriptionRecord> | Subscription list |
pageToken | String | Next page PageToken . |
-
UserSubscriptionRecord
Structure:Field Type Description subUserIds String[] Subscribed users subType int Subscription type subTime long Subscription time expiry Long Subscription expiration time
Error Codes
code | httpStatus | Description |
---|---|---|
200 | 200 | Success |
26001 | 400 | Invalid request parameters |
26003 | 500 | Internal error |
26022 | 403 | Subscribed user limit exceeded |
26021 | 200 | Subscribed user limit reached |
26020 | 401 | Subscription service not enabled |
Response Example
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
X-Request-ID: XXXXXXXXXXXXXXXXXXXXXXXXXXXX
{
"code": 200,
"hasNext": false,
"pageToken": "1712909941322_2_3881222167",
"subscriptions": [
{
"subUserIds": [
"4",
"5"
],
"subType": 1,
"subTime": 1712909941322,
"expiry": 1000000
}
]
}