The Company object
Represents a company in your workspace. Clients can be added to companies.
Attributes
id
string
Unique identifier for the company.
name
string
Name of the company.
initials
nullable string
Short initials for the company.
website
nullable string
Website URL of the company.
email
nullable string
Contact email address of the company.
phone_number
nullable string
Contact phone number of the company.
address
nullable string
Address of the company.
created_at
string
Time at which the company was created.
users
array of user objects
Users related to this company. Only returned when users are expanded.
The Company object
{
"id": "co_2ec8ed9533b64ccf8f91a5a3",
"name": "Kitchen Partners",
"initials": "KP",
"website": "https://kitchenpartners.example",
"email": "hello@kitchenpartners.example",
"phone_number": "+1 202 555 0198",
"address": "350 Market Street, San Francisco, CA",
"created_at": "2026-03-26T10:15:30+00:00",
"users": [
{
"created_at": "2024-03-11T15:37:23+00:00",
"email": "john.doe@example.net",
"group": "client",
"id": "u_c01bb6102b6ddadd4b1f020e",
"language": null,
"name": "John Doe",
"phone": null,
"role": "member",
"timezone": null,
"title": null,
"company": null,
"updated_at": "2024-03-11T15:37:23+00:00",
"username": "johndoe"
}
]
}