Setting up the webhook

Setting up the webhook at the customer side
To receive a webhook trigger you will need:
  • a simple web service reachable from the internet, which listens to some URL
  • the web service should support SSL only and you will need a SSL certificate
Self-signed certificates are NOT supported
The web service should be configured to use TLS v1.2
You can test the security level of your certificate at SSL Labs
  • the web service should support basic authentication or static bearer token
  • the HTTP method should be either GET, POST or PUT
post
https://yourcompany.com
/any/path
Webhook with event
get
https://yourcompany.com
/any/path/:orderId
Webhook with id

Next: configure the webhook