Integrations /
List registries
Lists the container registry credentials saved to this account. Does not display secrets.
Required permission
Account > Credentials > General > Read
Query parameters
per_page
integerThe number of results to display per request. Maximum of 100 results per page.page
integerThe page number to access.cursor
stringThe cursor returned from the previous page of results, used to request the next page.
Response body
- {object}Response object.
data
{object} requiredResult data.credentials
[array] requiredAn array of registry credential information.- {object}
id
string requiredID of the docker credentialsmin length3max length39pattern^[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$name
string requiredThe name of the docker credentials.min length3max length39pattern^[a-zA-Z]((-|\s)?[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*)?$provider
string requiredThe provider of the docker registry.one ofacr, ecr, gar, dockerhub, github, gitlab, custom, legacyregistryUrl
stringThe URL of the docker registry.aws
{object}region
stringThe region of the docker registry.gcp
{object}projectId
stringThe project ID of the GCP docker registry.azure
{object}resourceGroup
stringThe resource group of the Azure docker registry.integrationId
stringIntegration to use for this registry.pattern^((org|team)\/)?[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$credentials
{object}scope
{object} requiredpull
booleanWhether the credentials can pull images.push
booleanWhether the credentials can push images.updatedAt
stringtime of updatecreatedAt
stringtime of creationpagination
{object} requiredData about the endpoint pagination.hasNextPage
boolean requiredIs there another page of results available?cursor
stringThe cursor to access the next page of results.count
number requiredThe number of results returned by this request.
API
CLI
JS Client
GET /v1/integrations/registries
Example response
200 OK
A list of registry credentials saved to this account.
JSON
{
"data": {
"credentials": [
{
"id": "example-credentials",
"name": "Example Docker Credentials"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}