Definition

POST - webhooks/event/Webhook/Created

Occurs once a new webhook has been created.

This request contains the X-Hook-Key header, which is required to activate your webhook.

Response information


ActivationRequired

Indicates the webhook should be activated


Type boolean
WebhookId

The id of the webhook which triggered this request


Type integer
EventName

The EventName which triggered this request


Type string
Links

HATEOAS related to this object. It wil contain relevant url's such as previous and next page for paged results, create/update/delete action. These url's can be used in your application for the next steps in your application logic.


Type Hateoas
Sample:
{
  "ActivationRequired": true,
  "WebhookId": 2,
  "EventName": "sample string 3"
}
Sample:
<ActivationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
  <EventName>sample string 3</EventName>
  <WebhookId>2</WebhookId>
  <ActivationRequired>true</ActivationRequired>
</ActivationResult>