Page History
The CardioLog SaaS offers an API endpoint to create an eventserver-side API allows you to send events to CardioLog SaaS from any custom application.
In order to create the event, create an HTTP web request as described below:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
POST /cardiolog/api/server/events |
Note: Contact Intlock Support for the host address.
Request body
...
Parameter | Type | Description | Required |
---|---|---|---|
tid | GUID | Your tenant ID. Contact Intlock Support to get your tenant ID. | Yes |
et | string (max length 50) | Event type (predefined or custom type). See list of predefined event types below. | Yes |
ct | DateTime | Client time | No |
cto | string (max length 6) | The offset from UTC | No |
sid | string (max length 50) | Session id. Used for grouping multiple events | No |
url | string (max length 1000) | The URL of the visited page | No |
un | string (max length 256) | User name. The user principal name for identifying a user | No |
ua | string (max length 1000) | User agent | No |
meta | JSON object (max length 255 for key and value) | Metadata. Key-value string collection, containing metadata. | No |
...