User account parameters can be viewed by selecting Settings
from the application menu. To change these parameters, click the TODO icon.
The settings change form allows you to change the parameters:
See also: Account types.
Notifications sent by Signomix are divided into 3 types, whose names suggest their purpose:
For each of the above types of notifications, you can configure the communication channel by which Signomix will send the notification to the user. In any case, notifications will be available for viewing in the web application ( Notifications
menu option). The user can choose:
SMS notifications are available for paid account users.
Rules:
Syntax for Webhook address: [[HeaderName:]HeaderValue@]ServiceURI
Meaning:
element | meaning |
---|---|
HeaderName | The name of the header to be added to the HTTP request. The default value is Authorization |
HeaderValue | The value of the declared header |
ServiceURI | The address of the service to which the notification will be sent |
Notifications are sent using the POST method. An example of simulating a sent request 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 content of the notification.