v1
Double column
API
CLI
JS Client

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

      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.
      • credentials

        [array] required
        An array of registry credential information.
        • {object}
          • id

            string required
            ID of the docker credentials
            min length
            3
            max length
            39
            pattern
            ^[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$
          • name

            string required
            The name of the docker credentials.
            min length
            3
            max length
            39
            pattern
            ^[a-zA-Z]((-|\s)?[a-zA-Z0-9]+((-|\s)[a-zA-Z0-9]+)*)?$
          • provider

            string required
            The provider of the docker registry.
            one of
            acr, ecr, gar, dockerhub, github, gitlab, custom, legacy
          • registryUrl

            string
            The URL of the docker registry.
          • aws

            {object}
            • region

              string
              The region of the docker registry.
          • gcp

            {object}
            • projectId

              string
              The project ID of the GCP docker registry.
          • azure

            {object}
            • resourceGroup

              string
              The resource group of the Azure docker registry.
          • integrationId

            string
            Integration to use for this registry.
            pattern
            ^((org|team)\/)?[a-zA-Z](-?[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*)?$
          • credentials

            {object}
            • scope

              {object} required
              • pull

                boolean
                Whether the credentials can pull images.
              • push

                boolean
                Whether the credentials can push images.
          • updatedAt

            string
            time of update
          • createdAt

            string
            time of creation
    • 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/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
  }
}

© 2025 Northflank Ltd. All rights reserved.