List Offices
List all offices of the company
Path Parameters
companyID companyID required
The id of the company
Responses
- 200
List of offices of the company
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
items object[]
List of offices
id string
Unique ID of the the office
name string
Name of the office
emoji string
Emoji of the office
createdAt date-time
Date the office was created
updatedAt date-time
Date the office was last updated
deletedAt date nullable
Date the office was deleted
managers string[]
List of managers of the team
{
"items": [
{
"id": "2e8f9915-fda0-450c-95a3-d61f93c66fa9",
"name": "New York HQ",
"emoji": "🏢",
"createdAt": "2021-01-01T00:00:00.000Z",
"updatedAt": "2021-01-01T00:00:00.000Z",
"deletedAt": "2021-01-01",
"managers": [
"2e8f9915-fda0-450c-95a3-d61f93c66fa9"
]
}
]
}
Loading...