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