Skip to main content
PUT
/
orgs
/
{org_id}
/
photo
cURL
curl --request PUT \
  --url https://api.timbal.ai/orgs/{org_id}/photo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file=1
{
  "photo_url": "<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

Body

multipart/form-data

Multipart form schema for the OpenAPI doc only (the handler reads the raw file part directly).

file
integer<int32>[]
required

Org logo bytes. Must be an image; the type is detected from the file content, not the filename or declared content type.

Required range: x >= 0

Response

Org logo updated

photo_url
string
required

Public URL of the newly stored org logo.