Skip to main content
PATCH
/
orgs
/
{org_id}
cURL
curl --request PATCH \
  --url https://api.timbal.ai/orgs/{org_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "banner_url": "<string>",
  "contact_email": "<string>",
  "contact_name": "<string>",
  "contact_phone": "<string>",
  "country": "<string>",
  "description": "<string>",
  "name": "<string>",
  "photo_url": "<string>"
}
'
Omitted fields are left unchanged. To explicitly clear a field, pass it as null.

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

Body

application/json
banner_url
string | null
deprecated

URL of the organization's banner image

contact_email
string | null

Contact email address

contact_name
string | null

Contact person's name

contact_phone
string | null

Contact phone number

country
string | null

ISO 3166-1 alpha-2 country code

description
string | null

Organization description

name
string | null

Organization name

photo_url
string | null

URL of the organization's profile photo

Response

204

Organization updated successfully