Table of contents

Endpoint and credentials

Integration token is encoded in base64. A decoded token is a JSON object:

{ "integrationId":"0446eed7-bf24-4ba7-9fd9-b2212d3cfc89", "secret":"b0109db9-8836-4d33-bc69-cbfc651c3ec3" }

The endpoint is made up of the integrationId and the URL of the collector. This is done so that it is possible to balance the load for different projects if necessary.

const collectorEndpoint = 'wss://0446eed7-bf24-4ba7-9fd9-b2212d3cfc89.k1.hawk.so:433/ws';

Secret is a random uuid4 string. This string is generated every time when a user generates a new Integration Token for his project.