> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usatimbre.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Organization

> Get organization details including feature flags

## Overview

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

## Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique organization identifier
</ResponseField>

<ResponseField name="name" type="string">
  Organization name
</ResponseField>

<ResponseField name="description" type="string">
  Organization description
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp of when the organization was created
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp of when the organization was last updated
</ResponseField>

<ResponseField name="feature_flags" type="object">
  Object containing enabled feature flags for the organization
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://app.usatimbre.com/api/organizations/org_123456" \
    -H "Authorization: Bearer tmb_your_api_key_here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.usatimbre.com/api/organizations/org_123456', {
    headers: {
      'Authorization': 'Bearer tmb_your_api_key_here'
    }
  });
  const organization = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      'https://app.usatimbre.com/api/organizations/org_123456',
      headers={'Authorization': 'Bearer tmb_your_api_key_here'}
  )
  organization = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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
    }
  }
  ```

  ```json 404 theme={null}
  {
    "error": "Not Found",
    "message": "Organization not found"
  }
  ```
</ResponseExample>
