Polyv Help Center

Help Center

Get the Inviter's Bound Viewer List

Updated: 2025-06-05 18:34:19

Interface Description

1、支持按特定的条件去过滤、获取账号下的邀请员的绑定观众列表
2、接口支持https协议

Interface URL

https://api.polyv.net/live/v4/user/invite-sales/follow-viewer/list

Request Method

GET

Interface Constraints

  1. The interface supports both HTTP and HTTPS. HTTPS is recommended to ensure interface security. Interface calls have frequency limits. See details

Request Parameter Description

Parameter Name Required Type Description
appId true String Account appId See details
timestamp true Long Current 13-digit millisecond timestamp, valid within 3 minutes
sign true String Signature, a 32-digit uppercase MD5 value. The appSecret key used to generate the signature is critical for communication data security. It must not be stored or used directly on the client side. All APIs must be called through the customer's own server to relay requests to the POLYV server for response data. See signature generation rules
inviteCustomerId false String Inviter user ID, exact match
inviteCustomerNickname false String Inviter nickname keyword, supports fuzzy matching
viewerId false String Viewer user ID, exact match
username false String Viewer nickname keyword, supports fuzzy matching
telephone false String Viewer phone number, exact match
followStatusList false String Viewer binding status list, multiple values separated by commas. 0-Pending follow-up; 1-Bound; 2-Unbound.
pageSize false Integer Records per page (default 10, max 1000)
pageNumber false Integer Page number (max 1000 pages)

Request Example

https://api.polyv.net/v4/user/invite-sales/follow-viewer/list?appId=xxx&timestamp=1670471250000&sign=xxx&telephone=18112345678

Response Parameter Description

Parameter Name Type Description
code Integer Response status code, 200 for success, non-200 for failure
status String Response result, determined by business logic, returns success on success, error on failure
success Boolean Response result, determined by business logic, returns true on success, false on failure
data Object Specific response data See data object description
error Object Error information when status code is non-200 See error object description
requestId String Request ID, a unique UUID generated for each request, only for troubleshooting and debugging, not for business logic

data Object Description

Field Name Type Description
pageSize Integer Records per page
totalPages Integer Total pages
totalItems Integer Total records
contents Array Bound viewer information list See contents object description
requestId String Request ID, a unique UUID generated for each request, only for troubleshooting and debugging, not for business logic

contents Object Description

Field Name Type Description
inviteCustomerId String Inviter user ID
inviteCustomerNickname String Inviter user nickname
viewerId String Viewer user ID
nickname String Viewer user nickname
telephone String Viewer phone number
followStatus Integer Viewer binding status. 0-Pending follow-up; 1-Bound; 2-Unbound.
followTime timestamp Binding time, in 13-digit timestamp format

error Object Description

Field Name Type Description
code Integer Error code, used to determine the specific error
desc String Error description, corresponds to error.code

Java Request Example

For quick integration of basic code, please download the relevant dependency source code. Click here to download the source code. After downloading, add it to your own source code project. The HttpUtil.java and LiveSignUtil.java in the test cases are included in the downloaded file.

It is strongly recommended to use the Live Java SDK for API integration. The Live Java SDK provides unified encapsulation and optimization for API call logic, exception handling, data signing, and HTTP request thread pools.

public void test() throws IOException, NoSuchAlgorithmException {
    //公共参数,填写自己的实际参数
    String appId = super.appId;
    String appSecret = super.appSecret;
    String timestamp = String.valueOf(System.currentTimeMillis());
    
    //业务参数
    String telephone = "18112345678";
    
    String url = "https://api.polyv.net/v4/user/invite-sales/follow-viewer/list";
    
    //http 调用逻辑
    Map<String, String> requestMap = new HashMap<>();
    requestMap.put("appId", appId);
    requestMap.put("timestamp", timestamp);
    requestMap.put("telephone", telephone);
    requestMap.put("sign", LiveSignUtil.getSign(requestMap, appSecret));
    String response = HttpUtil.get(url, requestMap);
    log.info("response: {}", response);
}

Response Example

For global error descriptions, see Global Error Description

Success Example

{
    "code": 200,
    "status": "success",
    "requestId": "5b33d00b-d284-4a3d-adcd-38210f8681c8",
    "data": {
        "pageSize": 5,
        "totalPages": 2,
        "totalItems": 10,
        "contents": [
            {
                "inviteCustomerId": "6_xxxabc",
                "inviteCustomerNickname": "xxxabc",
                "viewerId": "6_xxxdef",
                "nickname": "xxxdef",
                "telephone": "18112345678",
                "followStatus": 1,
                "followTime": 1746699185000
            }
        ]
    },
    "success": true
}

Failure Example

{
    "code": 400,
    "status": "error",
    "requestId": "d310b70bc329403f87f77f9203d50f89.128.16360831552223589",
    "error": {
        "code": 20001,
        "desc": "application not found."
    },
    "success": false
}
联系客服,在线咨询