Get channel settings
GET/v1/settings
Retrieves your brand’s channel settings: the editable fields, the link state, and the managed integration groups as display strings.
Behavior
- Nothing here is secret: no client secret, no certificate material.
business_hoursandhours_timezoneare absent when the brand publishes no hours. Absence means “no hours model”: the brand is treated as always open; never a default week.
Get channel settings
curl https://messages.api.linqapp.com/v1/settings \
-H "Authorization: Bearer $LINQ_AMB_API_KEY"{
"brand_id": "biz_9f2c1a",
"display": "CurbFare",
"privacy_policy_url": "https://example.com/privacy",
"terms_of_use_url": "https://example.com/terms",
"policy_version": 3,
"support_contact": "[email protected]",
"richlink_default_image_att_id": "",
"agent_enabled": true,
"escalation_handling": "self_managed",
"escalation_handling_locked": false,
"consent_mode": "linq_managed",
"business_hours": {
"mon": [
[
"09:00",
"12:00"
],
[
"13:00",
"17:00"
]
],
"sat": [
[
"10:00",
"14:00"
]
]
},
"hours_timezone": "America/New_York",
"business_id": "a884eddf-b0ad-4be4-9c0e-071531638768",
"link_origin": "connect",
"managed": [
{
"name": "apple_pay_merchant",
"value": "not configured",
"managed_by": "linq",
"set": false,
"source": "platform"
},
{
"name": "app_extensions",
"value": "none registered",
"managed_by": "linq",
"set": false,
"source": "platform"
},
{
"name": "oauth",
"value": "configured",
"managed_by": "linq",
"set": true,
"source": "brand"
}
],
"app_extensions": {
"apps": {}
}
}Returns Examples
{
"brand_id": "biz_9f2c1a",
"display": "CurbFare",
"privacy_policy_url": "https://example.com/privacy",
"terms_of_use_url": "https://example.com/terms",
"policy_version": 3,
"support_contact": "[email protected]",
"richlink_default_image_att_id": "",
"agent_enabled": true,
"escalation_handling": "self_managed",
"escalation_handling_locked": false,
"consent_mode": "linq_managed",
"business_hours": {
"mon": [
[
"09:00",
"12:00"
],
[
"13:00",
"17:00"
]
],
"sat": [
[
"10:00",
"14:00"
]
]
},
"hours_timezone": "America/New_York",
"business_id": "a884eddf-b0ad-4be4-9c0e-071531638768",
"link_origin": "connect",
"managed": [
{
"name": "apple_pay_merchant",
"value": "not configured",
"managed_by": "linq",
"set": false,
"source": "platform"
},
{
"name": "app_extensions",
"value": "none registered",
"managed_by": "linq",
"set": false,
"source": "platform"
},
{
"name": "oauth",
"value": "configured",
"managed_by": "linq",
"set": true,
"source": "brand"
}
],
"app_extensions": {
"apps": {}
}
}