Skip to main content
PATCH
https://app.usatimbre.com
/
api
/
organizations
/
{org_id}
curl -X PATCH "https://app.usatimbre.com/api/organizations/org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Organization Name",
    "description": "Updated description"
  }'
{
  "id": "org_123456",
  "name": "Updated Organization Name",
  "description": "Updated description",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-21T09:00:00Z",
  "feature_flags": {
    "bulk_invoicing": true,
    "advanced_reporting": true
  }
}

Overview

Update organization information such as name and description.

Path Parameters

org_id
string
required
The unique identifier of the organization

Request Body

name
string
Updated organization name
description
string
Updated organization description

Response

Returns the updated organization object.
id
string
Unique organization identifier
name
string
Updated organization name
description
string
Updated organization description
updated_at
string
ISO 8601 timestamp of the update
curl -X PATCH "https://app.usatimbre.com/api/organizations/org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Organization Name",
    "description": "Updated description"
  }'
{
  "id": "org_123456",
  "name": "Updated Organization Name",
  "description": "Updated description",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-21T09:00:00Z",
  "feature_flags": {
    "bulk_invoicing": true,
    "advanced_reporting": true
  }
}