Skip to main content
PATCH
/
orgs
/
{org_id}
/
projects
/
{project_id}
/
vars
/
{var_id}
cURL
curl --request PATCH \
  --url https://api.timbal.ai/orgs/{org_id}/projects/{project_id}/vars/{var_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "env_ids": [
    123
  ],
  "value": "<string>"
}
'

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required
project_id
string
required
var_id
string
required

Body

application/json
description
string | null
env_ids
integer<int64>[] | null
value
string | null

Response

204

Variable updated successfully