Overview
OpenFeature Evaluation
Namespaces
Rollouts
Namespaces
List Namespaces
GET
/
api
/
v1
/
namespaces
Copy
Ask AI
curl --url https://try.flipt.io/api/v1/namespaces \
--header 'Accept: application/json'
Copy
Ask AI
{
"namespaces": [
{
"key": "<string>",
"name": "<string>",
"description": "<string>",
"protected": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalCount": 123
}
Copy
Ask AI
curl --url https://try.flipt.io/api/v1/namespaces \
--header 'Accept: application/json'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --url https://try.flipt.io/api/v1/namespaces \
--header 'Accept: application/json'
Copy
Ask AI
{
"namespaces": [
{
"key": "<string>",
"name": "<string>",
"description": "<string>",
"protected": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalCount": 123
}
Assistant
Responses are generated using AI and may contain mistakes.