homeenfeaturesaccount

User Account - Settings

You can view your user account settings by selecting Settings from the app menu. To change these settings, click the TODO icon.
The settings form allows you to change the following settings:

  • first name,
  • last name,
  • email address,
  • phone number prefix (country code),
  • preferred app language,
  • notification channel settings.

See also: Account Types.

Notification Channels

Notifications sent by Signomix are divided into 3 types, whose names suggest their purpose:

  • informational—general information regarding the operation of the user’s devices or the platform
  • Warning notifications—warnings
  • alerts regarding critical issues

For each of the above notification types, you can configure a communication channel through which Signomix will send the notification to you. In all cases, notifications will be available for viewing in the web app (under the Notifications menu option). You can choose:

  • In the app—notifications will be available exclusively in the web app,
  • Email – notifications will be sent to the specified email address,
  • Webhook – notifications will be sent via an HTTP request to the specified address,
  • SMS – an SMS message sent to the specified phone number

SMS Notifications

SMS notifications are available to paid account users.

Rules:

  • The default phone prefix (if not specified) is "+48".
  • When sending an SMS, the phone number is always preceded by the prefix.
  • Sending an SMS reduces the user’s points balance for additional services by 2 points.
  • Paid accounts have a monthly allowance of 20 points.
  • Increasing the point balance requires a separate purchase.

Webhook Configuration

Syntax for the Webhook address: [[HeaderName:]HeaderValue@]ServiceURI

Meaning:

elementmeaning
HeaderNameThe name of the header added to the HTTP request. The default value is Authorization
HeaderValueThe value of the declared header
ServiceURIThe address of the service to which the notification will be sent

Notifications are sent using the POST method. Example of a simulated request sent using cURL:

curl  -X POST \
  'https://mywebhookservice.com' \
  --header 'Authorization: token' \
  --header 'Content-Type: text/plain' \
  --data-raw 'notification text'

NOTE! Do not add the Content-Type header. It will be added automatically based on the notification’s content.

© 2023-2025 Grzegorz Skorupa