Skip to main content
GET
/
integrations
/
scaleway
/
container-registry
/
project
/
{projectId}
/
credentials
/
{credentialId}
/
namespaces
List Scaleway Namespaces
curl --request GET \
  --url https://api.example.com/integrations/scaleway/container-registry/project/{projectId}/credentials/{credentialId}/namespaces
{
  "success": true,
  "data": {
    "namespaces": [
      {
        "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "name": "production-registry",
        "region": "fr-par",
        "endpoint": "rg.fr-par.scw.cloud/production-registry",
        "imageCount": 12,
        "size": 5368709120,
        "status": "ready",
        "createdAt": "2026-01-15T08:00:00.000Z",
        "updatedAt": "2026-03-17T10:30:00.000Z"
      }
    ],
    "totalCount": 1,
    "page": 1,
    "pageSize": 20
  }
}

Path Parameters

projectId
string
required
The UUID of the project
credentialId
string
required
The UUID of the stored credential

Query Parameters

page
number
Page number (1-based). Default: 1
pageSize
number
Number of items per page. Default: 20

Authorization

Requires read permission on the project.

Response

success
boolean
Whether the request succeeded
data
object
{
  "success": true,
  "data": {
    "namespaces": [
      {
        "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
        "name": "production-registry",
        "region": "fr-par",
        "endpoint": "rg.fr-par.scw.cloud/production-registry",
        "imageCount": 12,
        "size": 5368709120,
        "status": "ready",
        "createdAt": "2026-01-15T08:00:00.000Z",
        "updatedAt": "2026-03-17T10:30:00.000Z"
      }
    ],
    "totalCount": 1,
    "page": 1,
    "pageSize": 20
  }
}