WebHookDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
host string
port number
page string
httpMethod WebHookMethodEnum Valid values: HTTP_GET, HTTP_POST, HTTP_PUT, HTTP_DELETE.
username string
password string
headers map of string
params map of string
Properties inherited from NotificationDto
code string
classNameFilter string
eventTypeFilter NotificationEventTypeEnum Valid values: CREATED, UPDATED, REMOVED, TERMINATED, DISABLED, PROCESSED, REJECTED, REJECTED_CDR, LOGGED_IN, INBOUND_REQ, ENABLED
elFilter string
scriptInstanceCode string
scriptParams map of string
counterTemplate string
Properties inherited from BusinessDto
updatedCode string

Example

{
  "host" : "...",
  "port" : 12345,
  "page" : "...",
  "httpMethod" : "HTTP_PUT",
  "username" : "...",
  "password" : "...",
  "headers" : {
    "property1" : "...",
    "property2" : "..."
  },
  "params" : {
    "property1" : "...",
    "property2" : "..."
  },
  "code" : "...",
  "classNameFilter" : "...",
  "eventTypeFilter" : "INBOUND_REQ",
  "elFilter" : "...",
  "scriptInstanceCode" : "...",
  "scriptParams" : {
    "property1" : "...",
    "property2" : "..."
  },
  "counterTemplate" : "...",
  "updatedCode" : "..."
}