您可通过此接口获取指定直播间的直播助教的账号信息列表,包括直播助教的功能权限、登录账号、登录密码等。
请求频率:单用户请求频率限制为 6 次/秒。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | ListTeachAssistantAccounts | 接口名称。当前 API 的名称为 ListTeachAssistantAccounts 。 |
Version | String | 是 | 2023-08-01 | 接口版本。当前 API 的版本为 2023-08-01 。 |
ActivityId | Long | 是 | 1774981841 | 直播间 ID。您可以通过 ListActivityAPI 接口查询 ID。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
TeachAssistantAccounts | Array of TeachAssistantAccounts | - | 直播助教账号信息列表。 |
MaxTeachAssistantAccountNumber | Long |
| 最多支持新增的直播助教账号个数。 说明 开通的功能版本不同,该参数的取值也不同:
|
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Password | String | 123456 | 直播助教平台的登录密码。 |
TeachAssistantFeatures | Array of Integer |
| 直播助教的功能权限。
|
IdentityId | String | 9188382 | 直播助教的登录账号。 |
Id | Long | 1 | 直播助教账号 ID。 |
NickName | String | 助教昵称 | 直播助教昵称。 |
Title | String | 助教头衔 | 直播助教头衔。 |
LoginUrl | String | https://live.example.com/ta/1779854981841/login?identity_id=9188382 | 直播助教平台的登录地址。 |
OneStepLoginUrl | String | https://live.example.com/ta/1779854981841/login?identity_id=9188382&p=*** | 直播助教平台的一键免登录地址,即助教可通过该地址免登录进入直播助教平台。 |
AudienceGroupIds | Array of Long | [0,149125456] | 助教可管理的直播分组列表。 |
GET https://livesaas.volcengineapi.com/?Action=ListTeachAssistantAccounts&Version=2023-08-01&ActivityId=1774981841
{ "ResponseMetadata": { "RequestId": "202306041104200100100232280022D31", "Action": "ListTeachAssistantAccounts", "Version": "2023-08-01", "Service": "livesaas", "Region": "cn-north-1", "SystemTime": 1697446406 }, "Result": { "TeachAssistantAccounts": [ { "Password": "123456", "TeachAssistantFeatures": [ 1, 2, 3 ], "IdentityId": "9188382", "Id": 1, "NickName": "助教昵称", "Title": "助教头衔", "LoginUrl": "https://live.example.com/ta/1779854981841/login?identity_id=9188382", "OneStepLoginUrl":"https://live.example.com/ta/1779854981841/login?identity_id=9188382&p=***", "AudienceGroupIds":[0,149125456] } ], "MaxTeachAssistantAccountNumber": 2 } }