curl --request GET \
--url https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentialsimport requests
url = "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"github": {
"available": true,
"githubOwner": "CybeDefend"
},
"gitlab": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"dockerhub": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"acr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"gcr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"ecr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"quay": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"harbor": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"jfrog": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"scaleway": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
]
}Get all container registry credentials for an organization
Returns all container registry credentials for an organization, grouped by provider.
Supported providers:
- GitHub Container Registry (ghcr.io) - Uses GitHub App installation (no stored credentials, returns availability status)
- GitLab Container Registry - Personal/group deploy tokens
- DockerHub - Personal access tokens
- Azure Container Registry (ACR) - Service principal credentials
- Google Container Registry (GCR) - Service account JSON keys
- Amazon ECR - IAM access keys
- Quay.io - Robot account credentials
- Harbor - Robot account credentials
- JFrog Artifactory - API keys or access tokens
This endpoint consolidates all registry credentials into a single response for easier frontend integration.
curl --request GET \
--url https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentialsimport requests
url = "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-eu.cybedefend.com/integrations/container-registry/organization/{organizationId}/credentials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"github": {
"available": true,
"githubOwner": "CybeDefend"
},
"gitlab": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"dockerhub": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"acr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"gcr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"ecr": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"quay": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"harbor": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"jfrog": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
],
"scaleway": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"projectId": "550e8400-e29b-41d4-a716-446655440000",
"name": "myregistry",
"registryUrl": "https://index.docker.io/v1/",
"createdAt": "2024-01-15T10:30:00.000Z",
"linkedProjectIds": [
"550e8400-e29b-41d4-a716-446655440000"
],
"description": "Production registry",
"gitlabDetails": {
"gitlabUrl": "https://gitlab.com",
"registryPath": "group/project"
},
"dockerhubDetails": {
"dockerhubUsername": "myusername"
},
"acrDetails": {
"subscriptionId": "12345678-1234-1234-1234-123456789012",
"resourceGroup": "my-resource-group",
"registryName": "myregistry"
},
"gcrDetails": {
"projectId": "my-gcp-project",
"location": "gcr.io"
},
"ecrDetails": {
"awsAccountId": "123456789012",
"region": "us-east-1"
},
"quayDetails": {
"quayOrganization": "myorg",
"isSelfHosted": false
},
"harborDetails": {
"harborProject": "myproject"
},
"jfrogDetails": {
"artifactoryUrl": "https://mycompany.jfrog.io",
"repositoryKey": "docker-local"
},
"scalewayDetails": {
"region": "fr-par",
"namespaceId": "12345678-1234-1234-1234-123456789012"
}
}
]
}Path Parameters
CybeDefend organization ID
"550e8400-e29b-41d4-a716-446655440000"
Response
All container registry credentials retrieved successfully
GitHub Container Registry status (uses GitHub App, no stored credentials)
Show child attributes
Show child attributes
GitLab Container Registry credentials
Show child attributes
Show child attributes
DockerHub credentials
Show child attributes
Show child attributes
Azure Container Registry (ACR) credentials
Show child attributes
Show child attributes
Google Container Registry (GCR) credentials
Show child attributes
Show child attributes
Amazon Elastic Container Registry (ECR) credentials
Show child attributes
Show child attributes
Quay.io credentials
Show child attributes
Show child attributes
Harbor credentials
Show child attributes
Show child attributes
JFrog Artifactory credentials
Show child attributes
Show child attributes
Scaleway Container Registry credentials
Show child attributes
Show child attributes