Namespace

List namespaces

List namespaces within an account.

get/namespace

Query parameters

offsetinteger

The starting point for pagination. Defaults to 0 if not provided.

limitinteger

The maximum number of results to return per page.

account_idstring required

Filters namespaces by account. Supports up to 10 comma-separated values.

Response

The operation was successful.

Example response

{
  "paging": {
    "total": 30,
    "limit": 200
  },
  "results": [
    {
      "id": 234,
      "name": "Crypto Kong Billing",
      "status": "active",
      "slug": "crypto-kong-billing",
      "account_id": 123,
      "metadata": {
        "key": "value"
      }
    }
  ]
}

Changes