Skip to content
Start here

Environment Variables

List environment variables
GET/accounts/{account_id}/builds/triggers/{trigger_uuid}/environment_variables
Upsert environment variables
PATCH/accounts/{account_id}/builds/triggers/{trigger_uuid}/environment_variables
Delete environment variable
DELETE/accounts/{account_id}/builds/triggers/{trigger_uuid}/environment_variables/{environment_variable_key}
ModelsExpand Collapse
EnvironmentVariableListResponse = map[object { created_on, is_secret, value } ]
created_on: string
formatdate-time
is_secret: boolean
value: optional string

Value is null for secret environment variables

EnvironmentVariableUpsertResponse = map[object { created_on, is_secret, value } ]
created_on: string
formatdate-time
is_secret: boolean
value: optional string

Value is null for secret environment variables

EnvironmentVariableDeleteResponse = unknown