Add or update legal value for the context field
POST<your-unleash-url>/api/admin/context/:contextField/legal-values
Endpoint that allows adding or updating a single custom context field legal value. If the legal value already exists, it will be updated with the new description
Request
Path Parameters
contextField stringrequired
- application/json
Bodyrequired
legalValueSchema
valuestringrequired
The valid value
Example:
#c154c1
descriptionstring
Describes this specific legal value
Example:
Deep fuchsia
Responses
- 200
This response has no body.
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/context/:contextField/legal-values' \
-H 'Content-Type: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"value": "#c154c1",
"description": "Deep fuchsia"
}'
ResponseClear