Skip to main content
GET
https://app.usatimbre.com
/
api
/
organizations
/
{org_id}
curl -X GET "https://app.usatimbre.com/api/organizations/org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "org_123456",
  "name": "Acme Corporation",
  "description": "Technology company",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-15T12:00:00Z",
  "feature_flags": {
    "bulk_invoicing": true,
    "advanced_reporting": true
  }
}

Overview

Retrieve organization details by organization ID, including feature flags and configuration.

Path Parameters

org_id
string
required
The unique identifier of the organization

Response

id
string
Unique organization identifier
name
string
Organization name
description
string
Organization description
created_at
string
ISO 8601 timestamp of when the organization was created
updated_at
string
ISO 8601 timestamp of when the organization was last updated
feature_flags
object
Object containing enabled feature flags for the organization
curl -X GET "https://app.usatimbre.com/api/organizations/org_123456" \
  -H "Authorization: Bearer tmb_your_api_key_here"
{
  "id": "org_123456",
  "name": "Acme Corporation",
  "description": "Technology company",
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-15T12:00:00Z",
  "feature_flags": {
    "bulk_invoicing": true,
    "advanced_reporting": true
  }
}