Trigger a new deployment for a project.
curl --request POST \
--url https://api.case.dev/applications/v1/projects/{id}/deployments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"environmentVariables": [
{
"key": "<string>",
"value": "<string>",
"target": [
"production"
],
"type": "encrypted"
}
]
}
'Was this page helpful?
curl --request POST \
--url https://api.case.dev/applications/v1/projects/{id}/deployments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"environmentVariables": [
{
"key": "<string>",
"value": "<string>",
"target": [
"production"
],
"type": "encrypted"
}
]
}
'