Skip to main content
All CollectionsIntegrationsReceive data from Relayter
Connect a Webhook Consumer to Relayter
Connect a Webhook Consumer to Relayter
Simon Windt avatar
Written by Simon Windt
Updated over 2 months ago

If you want to recieve / consume data events from Relayter you can do so using a Webhooks. In this article we will describe how to setup and receive data from Relayter using a Webhook consumer.

Setup a Webhook consumer connection in Relayter

  1. Go to team settings

  2. Click the Connections tab

  3. Click Add Connection

  4. Fill in the name of your Consumer

  5. Select Connection type: Webhook Consumer

Add Webhook event

In the connection detail page you can setup multiple event listeners. Per Relayter event you can fill in the URL Relayter will post the data to. This can be the same URL, or a different URL per event.

  1. In the Connection details page click add Event

  2. Select the Relayter event you want to receive, for instance CAMPAIGN_CREATED

  3. Enter the URL Relayter should post to. N.B. For security reasons we only post data to https urls.

Webhook events

These are the events we currently support. If you would like us to add an event not yet supported, please contact you customer support manager and we will look into adding it in a future release.

  • CAMPAIGN_CREATED
    Fires when a campaign is created in Relayter and includes campaign data (name, tags, etc)

  • PRODUCT_UPDATE
    Fires when a product is created in Relayter and includes product data and all asset linked to the product with their files.

  • ASSET_CREATED
    Fires when an asset is created in Relayter and includes asset data and image files.

  • ASSET_UPDATED

    Fires when an asset is updated in Relayter and includes asset data and image files.

File data

When we send file data in the event, for instance for assets, we send a full file model with creation and modification dates, extension size and an temporary signed url where you can download the file.

Receiving data

After creating the event Relayter will POST the data on every event in your team to the URL you specified.

Authentication

We have 3 layers of security which you can use. The first is the Authentication token, which is a simple shared secret send via a http header. The next is using a secret, which is used to create a HMAC signature, preventing sending the secret over the internet. The last is timestamp verification. This prevents sending the same request more than once. We also add WebHook-Request-Origin header you could check if you want.

It is up to you (the consumer) which authentication you want to support, Relayter will send all the header to support the most strict authentication.

For more information about HMAC signatures:

Request details

Below an overview how Relayter sends the data to your consumer.

Method

POST

JSON Data location

Request Body

Authentication token header

Authorization

Request origin header

WebHook-Request-Origin

Content type header

Content-Type: application/json

Signature header

Webhook-Request-Signature

Signature hashing algoritm

sha256

Signature encoding

hex

Timestamp header

Webhook-Request-Timestamp


​

Did this answer your question?