Appearance
设置定时签到
| 拥有此API的权限集 |
|---|
| 直播管理-增删改 |
请求方式及url
请求方式:
POST请求头:
Content-Type:application/json接口地址:
https://api.xiaoe-tech.com/xe.alive.signin.set_timed/1.0.0频率限制:
10秒50次
接口调试
请求参数
响应结果
暂无响应数据
请求参数
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| access_token | 是 | string | 专属token |
| resource_type | 是 | int | 4-直播,此处传4即可 |
| business_type | 是 | int | 1-直播签到,此处传1即可 |
| start_at | 是 | string | 定时签到开始时间 |
| end_at | 是 | string | 定时签到结束时间 |
| b_user_id | 是 | string | 固定值,传xiaoe_cloud即可 |
请求示例
json
{
"access_token": "xe_xxxxx",
"resource_type": 4,
"resource_id": "l_xxxxx",
"business_type": 1,
"start_at": "2026-03-04 16:52:00",
"end_at": "2026-03-04 17:00:00",
"b_user_id" : "xiaoe_cloud"
}返回参数
| 参数名 | 必选 | 类型 | 说明 | 备注 |
|---|---|---|---|---|
| code | 是 | int | 返回码 | 0-成功,其他值-失败 |
| msg | 是 | string | 返回信息 | code=0时为成功信息;code≠0时返回错误信息 |
备注
code=0时,表示接口调用成功
返回示例
json
{
"code": 0,
"msg": "ok"
}