Skip to main content

SearchDetail

更新时间:2025-05-08 15:36:25
Query the user's image registry information under a specified AIDC.
GET
https://api.alayanew.com/api/image/v1/registry
Authorizations
AuthorizationsStringHeaderRequired

用户可通过已获取Open API Key做验证,例如:plain Credential=[YOUR_AK],Signature=[YOUR_SK]。

Query Parameters
aidcIdStringRequired

Intelligent Computing Center ID.

Response
状态码:application/json
codeInt

The 'code' is a common return value format indicating the execution result of the query operation.

0 is the success identifier, indicating the operation completed successfully.
dataObject

data.registryString

The access address of the image registry.

msgStringRequired

When the 'code' value is -1, this returns the exception error message.

curl -X GET 'https://api.alayanew.com/api/image/v1/registry?aidcId=1'  -H 'Authorization: plain Credential=YOUR_AK,Signature=YOUR_SK'
{
    "code": 0,
    "data": {
        "registry": "harbor.dev01.zetyun.cn:8443"
    }
}