1.7 Get Meeting Details
Brief description:
Get meeting details
Request URL:
-https://telopenapi.quanshi.com/tel-conference/deal/v1/conference/confInfo
Request method:
POST
Request Parameter:
| Parameter Name | Required | Type | Description |
|---|---|---|---|
| confId | Yes | Int | G-Net Meeting id |
| userId | Yes | Int | G-Net user Id |
Request parameter example
{
"confId": 13673
"userId": 6135684
}
Curl Request:
curl -l -H "Content-type:application/json" -X POST -d '{"userId":2258811, "confId":833021}' -k --cert /d/cer/qs.deal.20220715/qs.deal.client_cert.pem --key /d/cer/qs.deal.20220715/qs.deal.client_key.pem https://telopenapi.quanshi.com/tel-conference/deal/v1/conference/confInfo
Return parameter data description:
| Parameter Name | Type | Description | |
|---|---|---|---|
| confId | Int | Meeting id | |
| confName | String | Meeting name | |
| confBillingCode | String | Meeting billingcode | |
| accountCode | String | Client number | |
| confCreater | String | Creator name | |
| beginTime | String | Meeting start time | |
| endTime | String | Meeting end time | |
| confDuration | Int | Meeting duration | |
| confConfig | Int | Dialing settings: default 4 1 : When meeting starts, automatically call experts 2 : When consulting clients join meeting, automatically call experts 3 : When all consulting clients join meeting, automatically call experts 4: After confirmed with consulting clients, G-Net service calls experts 5 : Experts join meeting themselves |
|
| tapedMark | Int | Auto recording (0: No, 2: Yes) default 0 | |
| confStatus | Int | Meeting status (0, 5: not started; 1: in progress; 2: ended; 4: interval; 3: canceled) | |
| chairmanPassword | String | Consulting client password | |
| partyPassword | String | Expert password | |
| createTime | String | Creation time | |
| createrTel | String | Creator phone number | |
| bridgeName | String | Platform (summit platform) | |
| ifMail | Int | Email notification (0: No, 1: Yes) default 0 | |
| ifSms | Int | SMS notification (0: No, 1: Yes) default 0 | |
| ifLimitParty | Int | Joining limit (0: All numbers can independently join meeting, 1: Only invited numbers can independently join meeting) | |
| partyMinutes | Int | Expert online duration | |
| radioConfig | Int | Broadcast settings: default 0 0 : Don’t open broadcast 1 : Auto broadcast when experts and consulting clients join meeting 2 : Auto broadcast 5 minutes before the meeting ends 3 : Free control broadcast during meeting |
|
| partyList | ArrayList | List | Participant list, at least one expert is required |
Parameters: partyList
| Parameter Name | Type | Description |
|---|---|---|
| custId | Int | Client id |
| partyName | String | Name |
| partyPhone | String | Participant phone number |
| acmPhone | String | Complete phone number, format: (country code)+area code+phone number, e.g. (86) 1059933636, or (86) 13111111111 |
| partyId | String | Participant joining id |
| partyRole | Int | Participant role |
| partyStatus | Int | Participant status (0: online; 1: offline; 2: connecting; 4: muted) |
| createTime | String | Joining time |
| disconnectReason | Int | See push notifications and participant notifications for disconnection reasons |
| isTalking | Boolean | Speaking or not, true as speaking |
Response example
{
"code": 0,
"msg": "Operation_Succeeded",
"requestId": "7bf63bab-5a00-fd0d-9d23-5cd102932b5a",
"data": {
"confId": 13673,
"confName": "",
"confCreater": "",
"beginTime": "2019-04-10 10:30:00",
"confDuration": 270,
"endTime": "2019-04-10 15:00:00",
"confConfig": 3,
"tapedMark": 0,
"confStatus": 2,
"confBillingcode": "66455562",
"chairmanPassword": "98118195",
"partyPassword": "93598570",
"accountBillingcode": "6135684",
"accountCode": "150023",
"createTime": "2019-04-10 10:14:38",
"createrTel": "13001019007",
"bridgeName": "summit1",
"partyList": [
{
"custId": 109217,
"partyName": "",
"partyPhone": "59933635",
"acmPhone": "(86)1059933635",
"partyId": "10H03BPLG8OG122I5P6GHLD29CLNXY",
"partyRole": 1,
"partyStatus": 1,
"disconnectReason": 0,
"isTalking": true
},
{
"custId": 109219,
"partyName": "",
"partyPhone": "59933631",
"acmPhone": "(86)1059933631",
"partyId": "10H03BPLG8OG122I5P6GHLD29CLN11",
"partyRole": 1,
"partyStatus": 1,
"disconnectReason": 0,
"isTalking": true
}
],
"ifMail": 0,
"ifSms": 0,
"ifLimitParty": 1,
"partyMinutes": 0,
"radioConfig": 1
}
}


