查看镜像列表 | 大装置帮助中心
跳到主要内容

查看镜像列表

GET https://sandbox.cn-sh-01.sensecoreapi.cn/studio/sandbox/v1/workspaces/{workspace_id}/images

接口说明

请求头(Request Header)

请求参数(Request Parameters)

字段类型必须位置描述
workspace_idstringpath工作空间id,获取方式可以参考快速开始
filterstringquery过滤条件
order_bystringquery-排序,例:"create_time desc, name".
page_sizeintegerquery返回当前页的最大条目数,默认50条.
page_tokenstringquery从上一个List请求返回的next_page_token值(如果有的话).

响应(Response)

异常情况请参考异常响应说明

名称类型描述
imagesarray[object]沙盒服务可用的镜像列表
next_page_tokenstring下一页的token.
total_sizeinteger镜像资源总数.

其中images的参数如下:

名称类型描述
idstring镜像ID
namestring镜像名称
typestring镜像类型,IMAGE_TYPE_BUILT_IN为预置镜像
descriptionstring镜像描述
repositorystring镜像仓库地址
create_timestring镜像创建时间
update_timestring镜像更新时间

响应示例(Response Example)

  • 正常响应
{
"images": [
{
"id": "string",
"name": "string",
"type": "IMAGE_TYPE_BUILT_IN",
"description": "string",
"repository": "string",
"create_time": "2025-08-26T12:51:14.735Z",
"update_time": "2025-08-26T12:51:14.735Z"
}
],
"next_page_token": "string",
"total_size": 0
}