Get the organization's registry
GET
/api/v1/organizations/{orgID}/registry
const url = 'https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/registry';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.aetherplatform.cloud/api/v1/organizations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/registry \ --header 'Authorization: Bearer <token>'Returns the registry record, or {"enabled": false} when no registry has been provisioned for the organization.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” orgID
required
string format: uuid
Organization UUID.
Responses
Section titled “ Responses ”The registry, or a disabled indicator.
Media type application/json
One of:
object
id
required
string
org_id
required
string
harbor_project
required
string
endpoint
required
string
enabled
required
boolean
quota_gb
required
integer
used_gb
number | null format: double
created_at
required
string format: date-time
updated_at
required
string format: date-time
object
enabled
required
Always false; indicates no registry is provisioned.
boolean
Example
{ "enabled": false}Missing or invalid credentials.
Media type application/json
object
error
required
object
code
required
A stable, machine-readable error code.
string
message
required
string
details
Array<object>
object
field
required
string
code
required
string
message
required
string
Example generated
{ "error": { "code": "example", "message": "example", "details": [ { "field": "example", "code": "example", "message": "example" } ] }}