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
- 200
OK
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
namespaces object[]
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.
{
"namespaces": [
{
"name": "my-namespace",
"createdAt": "2019-05-09T19:49:24.201361Z",
"updatedAt": "2019-05-09T19:49:24.201361Z",
"ownerName": "me",
"description": "My first namespace!"
}
]
}
Loading...