Namespaces
Create Namespace
Namespaces
Create Namespace
POST
/api/v1/namespaces
curl --request POST \
--url https://try.flipt.io/api/v1/namespaces \
--header 'Authorization: Bearer <token>' \
--data '{
"key": "<key>",
"name": "<name>"
}'
curl --request POST \
--url https://try.flipt.io/api/v1/namespaces \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"key": "<key>",
"name": "<name>"
}'
Authorizations
Authorization[header]required
string
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
description
string
keyrequired
string
namerequired
string
Response
createdAtrequired
string
descriptionrequired
string
keyrequired
string
namerequired
string
protectedrequired
boolean
updatedAtrequired
string
curl --request POST \
--url https://try.flipt.io/api/v1/namespaces \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
"key": "<key>",
"name": "<name>"
}'