Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.56 KB

File metadata and controls

37 lines (26 loc) · 1.56 KB

Webhook

Properties

Name Type Description Notes
id Long The internal ID of this entity.
created OffsetDateTime The time this entity was created.
modified OffsetDateTime The time this entity was last modified.
applicationIds List<Long> The IDs of the Applications in which this webhook is available. An empty array means the webhook is available in `All Applications`.
title String Name or title for this webhook.
description String A description of the webhook. [optional]
draft Boolean Indicates if the webhook is a draft.
verb VerbEnum API method for this webhook.
url String API URL (supports templating using parameters) for this webhook.
headers List<String> List of API HTTP headers for this webhook.
payload String API payload (supports templating using parameters) for this webhook. [optional]
params List<TemplateArgDef> Array of template argument definitions.
enabled Boolean Enables or disables webhook from showing in the Rule Builder.
authenticationId Long The ID of the credential that this webhook is using. [optional]

Enum: VerbEnum

Name Value
POST "POST"
PUT "PUT"
GET "GET"
DELETE "DELETE"
PATCH "PATCH"