模版管理
获取构建状态
查询模版的镜像构建状态
cURL
Copy
curl --request GET \
--url 'https://{workspace_id}.{region}.maas.aliyuncs.com/api/v1/agentstudio/sandbox/templates/{templateCode}/builds/{buildID}/status' \
--header 'Authorization: Bearer <YOUR_API_KEY>'Copy
{
"templateID": "<string>",
"buildID": "<string>",
"status": "building",
"logs": [
"<string>"
],
"logEntries": [
{}
],
"reason": {
"code": "<string>",
"message": "<string>"
}
}