For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Update a layer by adding, changing, or removing traffic reservations for experiments, or by changing layer name or description. Updating a layer uses the semantic patch format.
To make a semantic patch request, you must append domain-model=launchdarkly.semanticpatch to your Content-Type header. To learn more, read Updates using semantic patch.
Semantic patch requests support the following kind instructions for updating layers.
Updates the layer name.
name: The new layer name.Here’s an example:
{
"instructions": [{
"kind": "updateName",
"name": "New name"
}]
}
Updates the layer description.
description: The new description.Here’s an example:
{
"instructions": [{
"kind": "updateDescription",
"description": "New description"
}]
}
Adds or updates a traffic reservation for an experiment in a layer.
experimentKey: The key of the experiment whose reservation you are adding to or updating in the layer.reservationPercent: The amount of traffic in the layer to reserve. Must be an integer. Zero is allowed until iteration start.Here’s an example:
{
"environmentKey": "production",
"instructions": [{
"kind": "updateExperimentReservation",
"experimentKey": "exp-key",
"reservationPercent": 10
}]
}
Removes a traffic reservation for an experiment from a layer.
experimentKey: The key of the experiment whose reservation you want to remove from the layer.Here’s an example:
{
"environmentKey": "production",
"instructions": [{
"kind": "removeExperiment",
"experimentKey": "exp-key"
}]
}
curl --request PATCH \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/layers/{layerKey} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"comment": "Example comment describing the update",
"environmentKey": "production",
"instructions": [
{
"experimentKey": "checkout-button-color",
"kind": "updateExperimentReservation",
"reservationPercent": 25
}
]
}
'{
"key": "checkout-flow",
"name": "Checkout Flow",
"description": "The checkout flow for the application",
"createdAt": 123,
"randomizationUnit": "user",
"environments": {}
}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 layer key
The instructions to perform when updating. This should be an array with objects that look like {"kind": "update_action"}. Some instructions also require a value field in the array element.
Show child attributes
"[{\"kind\": \"updateName\", \"name\": \"Updated layer name\"}]"
Optional comment describing the update
"Optional comment"
The environment key used for making environment specific updates. For example, updating the reservation of an experiment
"production"
Layer response
The key of the layer
"checkout-flow"
The name of the layer
"Checkout Flow"
The description of the layer
"The checkout flow for the application"
The date and time when the layer was created
The unit of randomization for the layer
"user"
The layer configurations for each requested environment
Show child attributes
curl --request PATCH \
--url https://app.launchdarkly.com/api/v2/projects/{projectKey}/layers/{layerKey} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"comment": "Example comment describing the update",
"environmentKey": "production",
"instructions": [
{
"experimentKey": "checkout-button-color",
"kind": "updateExperimentReservation",
"reservationPercent": 25
}
]
}
'{
"key": "checkout-flow",
"name": "Checkout Flow",
"description": "The checkout flow for the application",
"createdAt": 123,
"randomizationUnit": "user",
"environments": {}
}