v1
Double column
API
CLI
JS Client

Cloud Providers /

List docker registries

Lists docker registries for the authenticated user or team.

Required permission

Account > Cloud > Registries > Read

Query parameters

    • per_page

      integer
      The number of results to display per request. Maximum of 100 results per page.
    • page

      integer
      The page number to access.
    • cursor

      string
      The cursor returned from the previous page of results, used to request the next page.

Response body

  • {object}
    Response object.
    • data

      {object} required
      Result data.
      • registries

        [array] required
        An array of integrations.
        • {object}
          An docker registry object.
          • id

            string required
            Identifier for the docker registry.
          • name

            string required
            The name of the docker registry.
          • description

            string
            A short description of the docker registry.
          • provider

            string
            The cloud provider to which this docker registry belongs to.
          • region

            string
            The region in which this registry was created.
          • createdAt

            string required
            The time the docker registry was created.
    • pagination

      {object} required
      Data about the endpoint pagination.
      • hasNextPage

        boolean required
        Is there another page of results available?
      • cursor

        string
        The cursor to access the next page of results.
      • count

        number required
        The 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
  }
}

© 2024 Northflank Ltd. All rights reserved.