Skip to main content
GET
/
settings
/
general
Get currently active general settings.
curl --request GET \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/settings/general \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "opening_hours": [
      [
        [
          "06:00",
          "12:00"
        ],
        [
          "13:00",
          "20:00"
        ]
      ]
    ],
    "force_close": false,
    "send_welcome_message": true,
    "welcome_message_open": "<string>",
    "welcome_message_closed": "<string>",
    "custom_tenant_name": "<string>",
    "custom_notifications_email": "<string>",
    "logo_url": "<string>",
    "primary_color": "ff00ff",
    "send_privacy_message": true,
    "privacy_link": "<string>",
    "privacy_message": "<string>",
    "notify_on_message": true,
    "notify_after_minutes": 123,
    "rating_invite_message": "<string>",
    "rating_external_link": "<string>",
    "mark_external_messages_as_read": true,
    "delete_messages_after_days": 90
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Success

data
object

General configuration settings.