Create Destination
Register Destination(Endpoint)
To register an endpoint, click on the "Register" button. Currently, the system allows only one endpoint to be created at a time. Once an endpoint is created, the "Register" button will disappear. Upon clicking "Register," a popup will appear, requiring you to enter the following details.
URL
Ensure the entered HTTPS URL is valid and ready to receive data via the POST method.

Explore Different Authentication Methods
Default
Custom SHA-256 HMAC Signature
Basic Auth
Bearer Token
Api Key
Default Type
Selecting the default type means there is no authentication. Our system will call your API without any authentication but will include our default headers.
Custom SHA-256 HMAC Signature
When selecting the custom SHA-256 HMAC Signature, you are opting for a more secure form of authentication. You need to define your header key and specify the signing secret that your backend supports. This method ensures that the communication between your system and the API is encrypted and authenticated, protecting it from tampering and unauthorized access. Ensure that both the client and server agree on the signing secret and header key to successfully implement this authentication type.

Basic Auth
When you select Basic Auth, you will need to enter both a username and a password. Your password will be securely stored and should be kept confidential to prevent unauthorized access. It's advisable to use a strong password, combining letters, numbers, and special characters, to enhance security.

Bearer Token
When you select Bearer Token, you must provide the token value without prefacing it with "Bearer". The request will be sent with the Authorization header properly formatted to include the Bearer token automatically. Ensure the token is kept secure and never shared inappropriately.

Api Key
To select an API Key, include both the key and its corresponding value. Also, specify where to include the key, either in the header or as a query parameter.

Last updated
