Bu sayfa henüz yerel dilinizde mevcut değildir. Daha fazla dil seçeneği eklemek için yoğun bir şekilde çalışıyoruz. Desteğiniz için teşekkür ederiz.
Querying Intelligent Livestreaming Rooms
Function
Queries intelligent livestreaming rooms.
Calling Method
For details, see Calling APIs.
URI
GET /v1/{project_id}/smart-live-rooms
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details about how to obtain the project ID, see Obtaining a Project ID. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
offset |
No |
Integer |
Offset where the query starts. Value range: 0-2147483647 Default value: 0 |
limit |
No |
Integer |
Number of items displayed on each page. Value range: 1-100 Default value: 10 |
room_name |
No |
String |
Fuzzy search by livestreaming room name. |
dh_id |
No |
String |
Search by virtual human image ID. |
model_name |
No |
String |
Fuzzy search by image name. |
live_state |
No |
String |
Live room status. The status can be WAITING, PROCESSING, SUCCESS, FAILED, or CANCELED. NULL indicates that there is no livestreaming task. Multiple statuses can be queried. Use commas (,) to separate them. |
start_time |
No |
String |
Start time of the latest livestreaming task. The format complies with RFC 3339, for example, 2021-01-10T08:43:17Z. |
end_time |
No |
String |
End time. The format complies with RFC 3339, for example, 2021-01-10T10:43:17Z. |
room_type |
No |
String |
Query by live room type. Options:
|
template_own_type |
No |
String |
Users can query information based on their own templates, templates shared with others, and public templates.
|
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
No |
String |
User token. This parameter is mandatory when token authentication is used. You can obtain the token by calling the IAM API used to obtain a user token. Value of X-Subject-Token in the response header. |
Authorization |
No |
String |
Authentication information. This parameter is mandatory for AK/SK authentication. |
X-Sdk-Date |
No |
String |
Time when the request is sent. This parameter is mandatory for AK/SK authentication. The format is YYYYMMDD'T'HHMMSS'Z'. |
X-Project-Id |
No |
String |
Project ID. This parameter is mandatory for AK/SK authentication. |
X-App-UserId |
No |
String |
Third-party user ID, which does not allow Chinese characters. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
X-Request-Id |
String |
Request ID. |
Parameter |
Type |
Description |
---|---|---|
count |
Integer |
Total number of livestreaming rooms. Value range: 0-2147483647 |
smart_live_rooms |
Array of SmartLiveRoomBaseInfo objects |
Livestreaming room list. |
Parameter |
Type |
Description |
---|---|---|
room_id |
String |
Livestreaming room ID. |
project_id |
String |
Tenant ID |
room_name |
String |
Livestreaming room name. |
room_type |
String |
Options:
Default value: NORMAL |
room_state |
String |
Live room status.
|
view_mode |
String |
Landscape or portrait mode. Default value: VERTICAL
Default value: VERTICAL |
error_info |
ErrorResponse object |
Error messages of a virtual human live room. |
shared_config |
SharedConfig object |
Template sharing information between live rooms. This parameter is specified only when the live room type is template. |
room_description |
String |
Livestreaming room description. |
cover_url |
String |
Livestreaming room thumbnail URL. |
thumbnail |
String |
Live room thumbnail URL |
model_infos |
Array of ModelInfo objects |
Virtual human model information. |
create_time |
String |
Creation time. The format complies with RFC 3339, for example, 2021-01-10T08:43:17Z. |
update_time |
String |
Update time. The format complies with RFC 3339, for example, 2021-01-10T08:43:17Z. |
last_job_start_time |
String |
Time when livestreaming starts. The format complies with RFC 3339, for example, 2021-01-10T08:43:17Z. |
last_job_end_time |
String |
Time when livestreaming ends. The format complies with RFC 3339, for example, 2021-01-10T08:43:17Z. |
last_job_status |
String |
Current livestreaming status.
|
priv_data |
String |
Private data, which is entered by the user and then returned with the same content. |
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
Parameter |
Type |
Description |
---|---|---|
shared_type |
String |
Details: Sharing type. Constraints: This configuration applies only to templates. Options:
Default value: N/A |
shared_state |
String |
Details: Sharing status. Constraints: This configuration applies only to templates whose shared_type is SHARED. Options:
Default value: N/A |
expire_time |
String |
Details: Time when the sharing expires. If this parameter is left blank, the sharing never expires. Constraints: This configuration applies only to templates whose shared_type is SHARED. The format complies with RFC 3339, for example, 20210110T08:43:17Z. Options: The value contains 0 to 20 characters. Default value: N/A |
allowed_project_ids |
Array of strings |
Details: Tenants allowed to access the asset. Constraints: This configuration applies only to templates whose shared_type is SHARED. Options: A maximum of 100 tenants are allowed. Duplicate records will be ignored. Enter a project ID containing 1 to 64 characters. Default value: N/A |
Parameter |
Type |
Description |
---|---|---|
model_asset_id |
String |
Model asset ID, which can be queried from the asset library. |
asset_name |
String |
Asset name. |
backup_model_asset_ids |
Array of strings |
ID of the alternative virtual streamer asset (image asset only) during streamer rotation, which can be queried from the asset library. |
Status code: 400
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
Status code: 401
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
Status code: 500
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error description. |
Example Requests
GET https://{endpoint}/v1/70b76xxxxxx34253880af501cdxxxxxx/smart-live-rooms
Example Responses
Status code: 200
Succeeded.
{ "count" : 1, "smart_live_rooms" : [ { "room_id" : "26f06524-4f75-4b3a-a853-b649a21aaf66", "room_name" : "The Legend of Nature", "room_description" : "Courseware", "create_time" : "2022-11-30T06:59:55Z", "update_time" : "2022-12-05T12:30:37Z" } ] }
Status code: 400
{ "error_code" : "MSS.00000003", "error_msg" : "Invalid parameter" }
Status code: 401
{ "error_code" : "MSS.00000001", "error_msg" : "Unauthorized" }
Status code: 500
{ "error_code" : "MSS.00000004", "error_msg" : "Internal Error" }
Status Codes
Status Code |
Description |
---|---|
200 |
Succeeded. |
400 |
Parameters error, including the error code and its description. |
401 |
Authentication is not performed or fails. |
500 |
Internal service error. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot