Updated on 2024-07-04 GMT+08:00

Querying Intelligent Livestreaming Rooms

Function

Queries intelligent livestreaming rooms.

Calling Method

For details, see Calling APIs.

URI

GET /v1/{project_id}/smart-live-rooms

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID. For details about how to obtain the project ID, see Obtaining a Project ID.

Table 2 Query Parameters

Parameter

Mandatory

Type

Description

offset

No

Integer

Offset where the query starts.

limit

No

Integer

Number of items displayed on each page.

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 of the latest livestreaming task. The format complies with RFC 3339, for example, 2021-01-10T10:43:17Z.

room_type

No

String

Query by live room type. Options:

  • NORMAL: general live room. The room always exists and can start and stop livestreaming at any time.
  • TEMP: temporary live room. After a livestreaming task is complete, the live room is automatically cleared.
  • TEMPLATE: live room template

template_own_type

No

String

Users can query information based on their own templates, templates shared with others, and public templates.

  • Owned: templates owned by a user and not shared yet
  • SHARED_TO_OHTERS: templates shared with others
  • SHARED_FROM_OHTERS: templates shared by others
  • Public: public templates

Request Parameters

Table 3 Request header 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

Table 4 Response header parameters

Parameter

Type

Description

X-Request-Id

String

Request ID.

Table 5 Response body parameters

Parameter

Type

Description

count

Integer

Total number of livestreaming rooms.

smart_live_rooms

Array of SmartLiveRoomBaseInfo objects

Livestreaming room list.

Table 6 SmartLiveRoomBaseInfo

Parameter

Type

Description

room_id

String

Livestreaming room ID.

project_id

String

Tenant ID

room_name

String

Livestreaming room name.

room_type

String

Live room type.

  • NORMAL: general live room. The room always exists and can start and stop livestreaming at any time.
  • TEMP: temporary live room. After a livestreaming task is complete, the live room is automatically cleared.
  • TEMPLATE: live room template

room_state

String

Live room status.

  • ENABLE: The live room is available.
  • DISABLE: The live room is unavailable. The cause is described in error_info.
  • BLOCKED: The live room has been blocked. The cause is described in error_info.

view_mode

String

Landscape or portrait mode. Default value: VERTICAL

  • LANDSCAPE: landscape
  • VERTICAL: portrait

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.

  • WAITING: The task is waiting for execution.
  • PROCESSING: The task is being executed.
  • SUCCEED: The task is completed.
  • FAILED: The task failed.
  • CANCELED: The task has been canceled.
  • BLOCKED: The task has been frozen.

priv_data

String

Private data, which is filled in by the user and carried back as it is.

Table 7 ErrorResponse

Parameter

Type

Description

error_code

String

Error code.

error_msg

String

Error description.

Table 8 SharedConfig

Parameter

Type

Description

shared_type

String

Sharing type.

  • PRIVATE: accessible only to the current tenant
  • PUBLIC: accessible to all tenants. Currently, only system assets are accessible to all tenants.
  • SHARED: accessible to specified tenants. The tenants are specified by the owner.

shared_state

String

Sharing status.

  • PUBLISHED: published. The template is available.
  • DRAFT: draft. The template is being edited and can be viewed only by the owner.
  • REVIEW: The template is being reviewed. The template cannot be edited and can be viewed only by the owner/reviewer.

expire_time

String

Time when the sharing expires. If this parameter is left blank, the sharing never expires.

allowed_project_ids

Array of strings

Tenants allowed to access the asset.

Table 9 ModelInfo

Parameter

Type

Description

model_asset_id

String

Model asset ID.

asset_name

String

Asset name.

backup_model_asset_ids

Array of strings

Asset ID of the alternative virtual streamer (only image assets, excluding timbre).

Status code: 400

Table 10 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

error_msg

String

Error description.

Status code: 401

Table 11 Response body parameters

Parameter

Type

Description

error_code

String

Error code.

error_msg

String

Error description.

Status code: 500

Table 12 Response body parameters

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.