Retrieve the current status of a specific component.
GET/component/status/:catalogId
This endpoint retrieves and returns the current status of the component identified by the given catalogId.
Request
Path Parameters
catalogId stringrequired
Catalog ID of the component to retrieve
Responses
- 200
- 500
- application/json
- Schema
- Example (from schema)
Schema
catalogId stringrequired
latest booleannullable
metadata nullable
name stringrequired
releaseAt date-timenullable
releaseNotes stringnullable
size int64required
version stringrequired
downloadDuration int32nullable
download duration in seconds
errMsg stringnullable
eta int32nullable
progress floatnullable
{
"catalogId": "string",
"latest": true,
"name": "string",
"releaseAt": "2026-01-01T11:09:05.886Z",
"releaseNotes": "string",
"size": 0,
"version": "string",
"downloadDuration": 0,
"errMsg": "string",
"eta": 0,
"progress": 0,
"state": "Offered"
}
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
name stringrequired
statusCode int32required
{
"message": "string",
"name": "string",
"statusCode": 0
}
Loading...