Documentation Index
Fetch the complete documentation index at: https://docs.thena.ai/llms.txt
Use this file to discover all available pages before exploring further.
Retrieves detailed configuration settings for a specific team, including timezone settings, business hours, routing preferences, and holidays. This tool is essential for understanding how a team operates and how tickets are routed.
Example prompt
Get team configurations for team T88WCYYHPS
| Name | Type | Required | Description |
|---|
| teamId | string | Yes | The ID of the team to retrieve configurations for |
Response fields
Below are the fields you may see in the response:
| Field | Type | Description |
|---|
| timezone | string | Team timezone (e.g., “America/New_York”) |
| teamId | string | Team unique identifier |
| fallbackSubTeam | string | Fallback sub team ID for routing |
| holidays | string[] | Array of holiday dates |
| routingRespectsTimezone | boolean | Whether routing respects team timezone |
| routingRespectsUserTimezone | boolean | Whether routing respects user timezone |
| routingRespectsUserAvailability | boolean | Whether routing respects user availability |
| routingRespectsUserBusinessHours | boolean | Whether routing respects user business hours |
| userRoutingStrategy | string | User routing strategy (e.g., “ROUND_ROBIN”, “LEAST_BUSY”) |
| commonDailyConfig | boolean | Whether common daily business hours config is enabled |
| dailyConfig | object | Business hours configuration for each day |
| createdAt | string (ISO8601) | Creation timestamp |
| updatedAt | string (ISO8601) | Last update timestamp |
Daily config fields
The dailyConfig object contains business hours for each day:
| Field | Type | Description |
|---|
| monday | object | Monday business hours |
| tuesday | object | Tuesday business hours |
| wednesday | object | Wednesday business hours |
| thursday | object | Thursday business hours |
| friday | object | Friday business hours |
| saturday | object | Saturday business hours |
| sunday | object | Sunday business hours |
Sample response
{
"data": {
"timezone": "America/New_York",
"teamId": "T88WCYYHPS",
"fallbackSubTeam": "T99WCYYHPS",
"holidays": ["2025-12-25", "2025-01-01"],
"routingRespectsTimezone": true,
"routingRespectsUserTimezone": true,
"routingRespectsUserAvailability": true,
"routingRespectsUserBusinessHours": true,
"userRoutingStrategy": "ROUND_ROBIN",
"commonDailyConfig": true,
"dailyConfig": {
"monday": {
"isOpen": true,
"startTime": "09:00",
"endTime": "17:00"
},
"tuesday": {
"isOpen": true,
"startTime": "09:00",
"endTime": "17:00"
},
"wednesday": {
"isOpen": true,
"startTime": "09:00",
"endTime": "17:00"
},
"thursday": {
"isOpen": true,
"startTime": "09:00",
"endTime": "17:00"
},
"friday": {
"isOpen": true,
"startTime": "09:00",
"endTime": "17:00"
},
"saturday": {
"isOpen": false,
"startTime": null,
"endTime": null
},
"sunday": {
"isOpen": false,
"startTime": null,
"endTime": null
}
},
"createdAt": "2025-07-24T07:19:10.258Z",
"updatedAt": "2025-07-24T07:19:10.258Z"
},
"status": true,
"message": "Team configurations retrieved successfully!",
"timestamp": "2025-07-25T12:50:38.937Z"
}