Cloud Providers /
List docker registries
Lists docker registries for the authenticated user or team.
Required permission
Account > Cloud > Registries > 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.registries
[array] requiredAn array of integrations.- {object}An docker registry object.
id
string requiredIdentifier for the docker registry.name
string requiredThe name of the docker registry.description
stringA short description of the docker registry.provider
stringThe cloud provider to which this docker registry belongs to.region
stringThe region in which this registry was created.createdAt
string requiredThe time the docker registry was created.pagination
{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/cloud-providers/docker-registries
Example response
200 OK
A list of docker registries for the authenticated user
JSON
{
"data": {
"registries": [
{
"id": "gcp-integration",
"name": "GCP integration",
"description": "The docker registry description",
"provider": "aws",
"region": "eu-west-1",
"createdAt": "2021-01-20T11:19:53.175Z"
}
]
},
"pagination": {
"hasNextPage": false,
"count": 1
}
}