apps_get
Retrieve detailed information about a specific app by its UUID, including name, URLs, type, timezone, currency, GDPR settings, and timestamps.
Instructions
Get detailed information about a specific app.
Args:
app_id: UUID of the app to retrieve
Returns:
Dictionary containing detailed app information including:
- id: App UUID
- name: App name
- urls: List of URLs where the app is available
- app_type: Type of application
- timezone: App timezone
- currency: App currency
- gdpr_enabled: Whether GDPR is enabled
- gdpr_data_anonymization: Whether GDPR data anonymization is enabled
- real_time_dashboards: Whether real-time dashboards are enabled
- created_at: App creation datetime
- updated_at: App last update datetime
For more details use also tracker_settings_app_get tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | App UUID | |
| name | Yes | App name | |
| urls | Yes | List of URLs where the app is available | |
| app_type | No | Type of application | |
| timezone | No | App timezone | |
| currency | No | App currency | |
| gdpr_enabled | No | Whether GDPR is enabled | |
| gdpr_data_anonymization | No | GDPR data anonymization setting | |
| real_time_dashboards | No | Real-time dashboards enabled | |
| created_at | No | Creation timestamp | |
| updated_at | No | Last update timestamp |