post https://uat-api.thredd.com/eds/api/v1/Webhooks
It is an endpoint that allows clients to register for Thredd's webhook service. It returns a Webhook Id that should be saved if the notification needs to be amended in the future.
Sample request:
POST api/v1/Webhooks
{
"productId": 1234,
"events": [
101,
102
],
"webhookStatus": "active",
"config":
{
"url": "https://client_domain.com/webhook",
"customHeaders":
{
"header1": "value1",
"header2": "value2",
"header3": "value3"
}
}
}