Create Webhook

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"
        }
    }
}
Language
URL
Click Try It! to start a request and see the response here!