2.16 Obtain Login-Free Address on Monitor Page

Brief description:

• Obtain login-free address on monitor page • There are two permissions (check only, manage all) after login by login-free link. This requires the super admin to log in on application manager and set permissions

Request URL:

-https://telopenapi.quanshi.com/tel-conference/deal/v1/conference/getMonitorUrl

Request method:

POST

Request Parameter:

Parameter Name Required Type Description
confId Yes Int Meeting id, the unique identifier of the conference
userId Yes Int G-Net user Id

Request parameter example

{
"userId": 6135684 ,
"confId": 13679
}

Curl Request:

 curl -l -H "Content-type:application/json" -X POST -d '{"userId":2258811, "confId":833045}' -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/getMonitorUrl

Return parameter description:

Parameter Name Type Description
code Int Response Status value
msg String Error description
requestId String Request id, G-Net use this parameter to trace the request
data Json The detail data of response

Return data parameter description:

Parameter Name Type Description
url String Monitor page link

Response example

{
  "code": 0,
  "msg": "Operation_Succeeded",
  "requestId": "7bf63bab-5a00-fd0d-9d23-5cd102932b5a",
  "data": {
    "url": "http://qs.deal.quanshi.com/deal/singleSignOn/getConfDetail?token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
  }
}