名称:直播间绑定列表
接口:/merchant/live/bindLiveIndex
请求方式:post
参数名 | 类型 | 必填 | 说明 | 示例 |
---|---|---|---|---|
live_id | int | Y | 直播id | 36 |
说明
1.此方法需要登录
返回示例
{
"code": 200,
"message": "success",
"result": {
"current_page": 1,
"total": 1,
"last_page": 1,
"data": [{
"live_id": 3, //直播间id
"title": "title", //标题
"poster": "poster", //封面的url
"live_time": "2020-02-02 08:00:00", //直播时间
"live_bind_status": 2 //1代表已经绑定2代表未绑定
}]
}
}