Skip to content
  • Auto
  • Light
  • Dark
Get Started
View as Markdown
Copy Markdown

Open in Claude
Open in ChatGPT

Environment Variables

Settings and secrets for Vals

List
client.vals.environmentVariables.list(stringvalID, EnvironmentVariableListParams { limit, offset } query, RequestOptionsoptions?): PageCursorURL<EnvironmentVariableListResponse { createdAt, description, key, updatedAt } >
get/v2/vals/{val_id}/environment_variables
Create
client.vals.environmentVariables.create(stringvalID, EnvironmentVariableCreateParams { key, value, description } body, RequestOptionsoptions?): EnvironmentVariableCreateResponse { createdAt, description, key, updatedAt }
post/v2/vals/{val_id}/environment_variables
Update
client.vals.environmentVariables.update(stringkey, EnvironmentVariableUpdateParams { val_id, value, description } params, RequestOptionsoptions?): EnvironmentVariableUpdateResponse { createdAt, description, key, updatedAt }
put/v2/vals/{val_id}/environment_variables/{key}
Delete
client.vals.environmentVariables.delete(stringkey, EnvironmentVariableDeleteParams { val_id } params, RequestOptionsoptions?): void
delete/v2/vals/{val_id}/environment_variables/{key}