跳到主要内容

查詢直播服務授權碼

描述

直播服務授權碼列表

請求引數

引數名引數型別是否必填引數說明
ActionString操作方法:ListServiceAuthCode,此引數為公共引數,不必放body裡面
RegionString機房標識,取值參見地域列表
LiveServiceIdString直播服務ID

返回引數

名稱型別說明
LiveServiceAuthCodeLiveServiceAuthCode由LiveServiceAuthCode組成的物件,返回授權碼資訊

LiveServiceAuthCode

應用安裝狀態 名稱型別說明
IdStringid
LiveServiceIdString直播服務ID
AuthCodeString授權碼
AuthDescString授權碼說明
CreateTimeLong建立時間

請求示例

post https://api.yunpanel.com/v2/?Action=ListServiceAuthCode

{
"Region":"xxxxxx",
"LiveServiceId":"xxxxxxxx"
}

返回示例

{
"code": 10000,
"message": "",
"data": {
"List":[{
"Id": "xxxxxx",
"LiveServiceId": "xxxxxx",
"AuthCode": "xxxxxx",
"AuthDesc": "xxxxxx",
"CreateTime": xxxxxx
}]
}
}