Settings
Retrieve company-level settings and configuration.
Use cases: Use the Settings API to read your account configuration, tax rates, and branding details.
GET
/settingsGet company settings including tax rate, currency, and branding.
Request
curl -X GET "https://api.glance.co.il/settings" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response
Response
{
"data": {
"companyName": "My Company",
"taxId": "515000000",
"currency": "ILS",
"taxRate": 17,
"language": "he",
"timezone": "Asia/Jerusalem",
"logo": {
"url": "https://files.glance.app/logo/company-logo.png"
}
}
}