Organization
Get Organization
Section titled “Get Organization”GET /api/v1/orgScope: org:read
Returns your organization’s configuration. This endpoint is read-only.
Example
Section titled “Example”curl "https://api.brightlyai.app/api/v1/org" \ -H "Authorization: Bearer brk_your_key"Response
Section titled “Response”{ "data": { "id": "org-uuid-...", "name": "Smith Roofing", "logo_url": "https://example.com/logo.png", "primary_phone": "+15551234567", "primary_email": "info@smithroofing.com", "address": "456 Oak Ave, Austin TX 78701", "business_hours": { "monday": { "start": "08:00", "end": "17:00" }, "tuesday": { "start": "08:00", "end": "17:00" }, "wednesday": { "start": "08:00", "end": "17:00" }, "thursday": { "start": "08:00", "end": "17:00" }, "friday": { "start": "08:00", "end": "17:00" }, "saturday": null, "sunday": null }, "payment_status": "active", "plan_tier": "growth", "ai_name": "Sarah", "ai_tone": "friendly_professional", "timezone": "America/Chicago", "created_at": "2026-01-15T00:00:00Z", "updated_at": "2026-05-10T14:30:00Z" }}Fields
Section titled “Fields”| Field | Type | Description |
|---|---|---|
id | UUID | Organization ID |
name | string | Organization name |
logo_url | string | Logo image URL |
primary_phone | string | Main business phone |
primary_email | string | Main business email |
address | string | Business address |
business_hours | object | Per-day start/end times (null = closed) |
payment_status | string | Subscription status: active, past_due, cancelled |
plan_tier | string | Current plan: starter, growth, scale |
ai_name | string | AI agent’s display name |
ai_tone | string | AI agent’s communication style |
timezone | string | IANA timezone |