Skip to main content

List all namespaces

Returns a list of namespaces.

Query Parameters
    limit integer

    Default value: 100

    The number of results to return from offset.

    offset integer

    The initial position from which to return results.

Responses

OK


Schema
    namespaces object[]
  • Array [
  • name string

    The name of the namespace.

    createdAt date-time

    An ISO-8601 timestamp representing the date/time the namespace was created.

    updatedAt date-time

    An ISO-8601 timestamp representing the date/time the namespace was updated.

    ownerName string

    The owner of the namespace.

    description string

    The description of the namespace.

  • ]
GET /namespaces

Request

Base URL
http://localhost:5000/api/v1
limit — query
offset — query
curl / cURL
curl -L -X GET 'http://localhost:5000/api/v1/namespaces' \
-H 'Accept: application/json'