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:
See also: Account Types.
Notifications sent by Signomix are divided into 3 types, whose names suggest their purpose:
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:
SMS notifications are available to paid account users.
Rules:
Syntax for the Webhook address: [[HeaderName:]HeaderValue@]ServiceURI
Meaning:
| element | meaning |
|---|---|
| HeaderName | The name of the header 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. 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-Typeheader. It will be added automatically based on the notification’s content.