Paginate through your namespaces.
Paginate through the list of namespaces, optionally with a given prefix. You can retrieve more information about a specific namespace with the metadata endpoint.
retrieve the next page of results (pass next_cursor
from the response payload)
retrieve only namespaces that match the prefix, e.g. foo
would return foo
and foo-bar
.
limit the number of results per page (max of 1000)
An array of namespace objects. Each namespace object contains:
id
(string): the namespace identifierExample:
[
{"id": "my-namespace"},
{"id": "test-namespace"},
{"id": "production-data"}
]
A cursor for pagination. Pass this value as the cursor
parameter in the next request to retrieve the next page of results. Only present when there are more namespaces to retrieve.