Organization Data Structures
Field definitions for organization objects. All resources belong to an organization.
|
ID Format
Resources use prefixed public IDs (for example deal_..., inv_..., form_..., ak_...).
See global ID conventionsOrganization object
Object representing an organization. All resources belong to an organization.
Fields
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Required | Organization ID |
name | string | Required | Organization name (internal slug) |
display_name | string | null | Optional | Display name |
email | string | null | Optional | |
phone | string | null | Optional | Phone |
website | string | null | Optional | Website URL |
address | string | null | Optional | Address |
representative | string | null | Optional | Representative name |
invoice_registration_number | string | null | Optional | Qualified invoice issuer registration number (T + 13 digits) |
postal_code | string | null | Optional | Postal code |
logo_url | string | null | Optional | Logo image URL |
created_at | string | Required | Created at (ISO 8601) |
updated_at | string | Required | Updated at (ISO 8601) |
{
"id": "org_01HZXYZ",
"name": "acme-corp",
"display_name": "Acme Corporation",
"email": "info@acme.example.com",
"phone": "03-1234-5678",
"website": "https://acme.example.com",
"address": "東京都千代田区1-1-1",
"representative": "田中太郎",
"invoice_registration_number": "T1234567890123",
"postal_code": "100-0001",
"logo_url": "https://storage.blueai.jp/logos/acme.png",
"created_at": "2026-01-01T00:00:00Z",
"updated_at": "2026-02-20T12:00:00Z"
}