curl --request PATCH \
--url http://localhost:52000/api/v1/environments/{environmentId}/variables \
--header 'Content-Type: application/json' \
--data '
{
"removed": [
123
],
"updated": [
{
"id": 123,
"key": "<string>",
"value": "<string>",
"active": true
}
],
"added": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'curl --request PATCH \
--url http://localhost:52000/api/v1/environments/{environmentId}/variables \
--header 'Content-Type: application/json' \
--data '
{
"removed": [
123
],
"updated": [
{
"id": 123,
"key": "<string>",
"value": "<string>",
"active": true
}
],
"added": [
{
"key": "<string>",
"value": "<string>"
}
]
}
'