Create or update environment variables for a project
curl --request POST \
--url https://api.case.dev/projects/v1/{id}/env-vars \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"envVars": [
{
"key": "<string>",
"value": "<string>",
"environment": "production",
"isSecret": true,
"description": "<string>"
}
]
}
'Was this page helpful?
curl --request POST \
--url https://api.case.dev/projects/v1/{id}/env-vars \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"envVars": [
{
"key": "<string>",
"value": "<string>",
"environment": "production",
"isSecret": true,
"description": "<string>"
}
]
}
'