Basic Authentication
Availability: All Customers
This is the simplest authentication mechanism to implement, the webhook endpoint will receive an authorization header with every request in the following format Authorization: Basic base64(username:password)
.
Using the following username (A7K4X9T2MB
) and password (L0N5C8V1QZ
) as an example, the following will be posted to the webhook endpoint.
Example Authorization Header:
POST /webhook-endpoint
Authorization: Basic QTdLNFg5VDJNQjpMME41QzhWMVFa
Content-Type: application/json
Example Webhook Configuration:

Updated 5 days ago