HQ APINotification settings
Retrieve notification settings configuration
Returns the structure of available notification categories, subcategories, and channels. This configuration is used to dynamically render notification settings UI.
GET
/v1/hq/companies/{company_id}/notifications_settingsPath Parameters
company_id*string
ID of the company to list notification settings for
Query Parameters
select?array<string>
expand?array<string>
Response Body
application/json
curl -X GET "https://api.noona.is/v1/hq/companies/string/notifications_settings"[
{
"id": "online_bookings",
"title": "Appointments in online bookings",
"readable_id": "online_bookings",
"subcategories": [
{
"id": "new_bookings",
"title": "New appointments",
"readable_id": "new_bookings",
"channels": [
{
"id": "hq",
"title": "In HQ",
"readable_id": "hq",
"locked": false
}
]
}
]
}
]Empty
Empty
Empty