Skip to main content

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

Bodyrequired

legalValueSchema

    valuestringrequired

    The valid value

    Example: #c154c1
    descriptionstring

    Describes this specific legal value

    Example: Deep fuchsia

Responses

This response has no body.

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
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"
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Parameters
— pathrequired
Body required
{
  "value": "#c154c1",
  "description": "Deep fuchsia"
}
ResponseClear

Click the Send API Request button above and see the response here!