For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Create or update a context kind by key. Only the included fields will be updated.
curl --request PUT \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/context-kinds/{key} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "organization",
"description": "An example context kind for organizations",
"hideInTargeting": false,
"archived": false,
"version": 1
}
'{
"status": "success",
"_links": {}
}Documentation Index
Fetch the complete documentation index at: https://launchdarkly-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The project key
The context kind key
The context kind name
"organization"
The context kind description
"An example context kind for organizations"
Alias for archived.
false
Whether the context kind is archived. Archived context kinds are unavailable for targeting.
false
The context kind version. If not specified when the context kind is created, defaults to 1.
1
curl --request PUT \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/context-kinds/{key} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "organization",
"description": "An example context kind for organizations",
"hideInTargeting": false,
"archived": false,
"version": 1
}
'{
"status": "success",
"_links": {}
}