v106

OpenAPI 3.1.0raw.githubusercontent.com2026-08-02160524464.6 KB
Variables

Store or update a variable

Stores a non-sensitive variable for run config interpolation.

post/api/v1/variables

Request body

namestring required

Env-style variable name.

valuestring required

Variable value. Empty values are allowed.

descriptionstring

Optional operator-facing description of the variable.

Response

Variable stored

namestring required

Env-style variable name.

valuestring required

Variable value.

descriptionstring

Optional operator-facing description of the variable.

created_atstring date-time required

When the variable was first stored.

updated_atstring date-time required

When the variable was last updated.

Example response

{
  "name": "DEPLOY_ENV",
  "value": "production"
}