Batch Add Group Records
Updated: 2022-10-12 15:25:43
API Description
1、批量新增分组记录
2、分组记录数量上限是1万条
3、单次只允许增加同一频道的记录
4、校验参会人id是否重复时,不区分大小写
5、(channelId, timestamp, appId)参与sign签名,并和sign一起通过url传递,请求体参数不参与签名,通过post请求体传递【请设置请求头contentType:application/json】
6、接口支持https协议
API URL
https://api.polyv.net/live/v4/seminar/group/plan/save-batch
Request Method
POST
API Constraints
- The API supports both HTTP and HTTPS. HTTPS is recommended for security. API calls have frequency limits. See details
Request Parameter Description
| Parameter | Required | Type | Description |
|---|---|---|---|
| appId | true | String | Account appId See Get Secret Key |
| timestamp | true | Long | Current 13-digit millisecond timestamp, valid within 3 minutes |
| sign | true | String | Signature, a 32-character 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 |
| channelId | true | Integer | Channel ID |
Request Body Parameter Description
| Parameter | Required | Type | Description |
|---|---|---|---|
| list | true | Array | Batch insert records See list field description |
List Field Description
| Parameter | Required | Type | Description |
|---|---|---|---|
| viewerId | true | String | Participant ID, max 64 characters (must be unique) |
| nickname | true | String | Participant nickname, max 64 characters (used for identification only, does not change the participant's display name) |
| groupNo | true | Integer | Group number, between 1 and 50 |
| groupRole | true | String | Role within the group. A group cannot have more than one leader. leader: Group leader member: Group member |
Example
https://api.polyv.net/live/v4/seminar/group/plan/save-batch?appId=fyirmfdak4×tamp=1657786379352&sign=CEA301164F9BA5076F156C1EB60F22F8&channelId=3220878
Request Body Parameters
{
"list" : [{
"viewerId": "viewerId1",
"nickname": "viewerId1_nick",
"groupNo": 1,
"groupRole": "leader"
}, {
"viewerId": "viewerId2",
"nickname": "viewerId2_nick",
"groupNo": 1,
"groupRole": "member"
}, {
"viewerId": "viewerId3",
"nickname": "viewerId3_nick",
"groupNo": 2,
"groupRole": "member"
}]
}
Response Parameter Description
| Parameter | Type | Description |
|---|---|---|
| code | Integer | Status code, same as HTTP status code, used to determine the basic response status |
| status | String | Response result, determined by the business. Returns "success" on success, "error" on failure |
| success | Boolean | Whether the response was successful |
| requestId | String | Request ID, a unique UUID generated for each request. Used only for troubleshooting and debugging, not for business logic |
| error | Object | Error information when status code is not 200 See Error field description |
| data | Object | Failure reason, returned on failure. Empty on success See data field description |
Error Parameter Description
| Parameter | Type | Description |
|---|---|---|
| code | Integer | Error code, used to identify the specific error reason |
| desc | String | Error description, corresponding to error.code |
Data Field Description
| Parameter | Required | Type | Description |
|---|---|---|---|
| infoIncorrectViewerIdList | Array | Invalid participant IDs (nickname empty/nickname > 64 characters/group number empty/group number not between 1-50/group role empty/incorrect group role parameter) | |
| duplicateViewerIdList | Array | Duplicate participant IDs | |
| duplicateLeaderGroupNoList | Array | Group numbers with duplicate leaders |
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 project. The test cases include HttpUtil.java and LiveSignUtil.java 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.
private static final Logger log = LoggerFactory.getLogger(GroupPlanSaveBatch.class);
/**
* 批量新增分组记录
* @throws IOException
*/
@Test
public void testGroupPlanSaveBatch() throws IOException, NoSuchAlgorithmException {
//公共参数,填写自己的实际参数
String appId=super.appId;
String appSecret=super.appSecret;
String userId = super.userId;
String timestamp=String.valueOf(System.currentTimeMillis());
//业务参数
String url = "https://api.polyv.net/live/v4/seminar/group/plan/save-batch";
String channelId = "2191532";
String body = "{\n" +
" \"list\" : [{\n" +
" \"viewerId\": \"viewerId1\",\n" +
" \"nickname\": \"viewerId1_nick\",\n" +
" \"groupNo\": 1,\n" +
" \"groupRole\": \"leader\"\n" +
" }, {\n" +
"\n" +
" \"viewerId\": \"viewerId2\",\n" +
" \"nickname\": \"viewerId2_nick\",\n" +
" \"groupNo\": 1,\n" +
" \"groupRole\": \"member\"\n" +
" }, {\n" +
"\n" +
" \"viewerId\": \"viewerId3\",\n" +
" \"nickname\": \"viewerId3_nick\",\n" +
" \"groupNo\": 2,\n" +
" \"groupRole\": \"member\"\n" +
" }]\n" +
"}";
//http 调用逻辑
Map<String,String> requestMap = new HashMap<>();
requestMap.put("appId", appId);
requestMap.put("timestamp",timestamp);
requestMap.put("channelId",channelId);
requestMap.put("sign",LiveSignUtil.getSign(requestMap, appSecret));
url = HttpUtil.appendUrl(url, requestMap);
String response = HttpUtil.postJsonBody(url, body, null);
log.info("测试批量新增分组记录接口返回值:{}",response);
//do somethings
}
Response Example
For system-wide error descriptions, see Global Error Description
Success Example
{
"code": 200,
"status": "success",
"message": "",
"data": true
}
Error Example
{
"code": 400,
"status": "error",
"error": {
"code": 10003,
"desc": "时间戳过期"
},
"success": false
}
{
"code": 403,
"status": "error",
"error": {
"code": 10002,
"desc": "签名错误"
},
"success": false
}
{
"code": 400,
"status": "error",
"requestId": "f02d8d1c81b94bf3b761efb9b9bc1fd2.58.16577892258410007",
"error": {
"code": 50011,
"desc": "批量插入分组记录失败,信息有误"
},
"data": {
"infoIncorrectViewerIdList": [],
"duplicateViewerIdList": ["viewerid2", "viewerid3"],
"duplicateLeaderGroupNoList": [],
"correct": false
},
"success": false
}
{
"code": 400,
"status": "error",
"requestId": "f02d8d1c81b94bf3b761efb9b9bc1fd2.58.16577892258410007",
"error": {
"code": 50010,
"desc": "数量超过限制,最多10000条数据"
},
"data": {
"infoIncorrectViewerIdList": [],
"duplicateViewerIdList": [],
"duplicateLeaderGroupNoList": [],
"correct": false
},
"success": false
}
