interface PipedriveTriggerNodeParameters {
action?:
| "create"
| "delete"
| "deleted"
| "*"
| "updated"
| "change"
| "added"
| "merged";
authentication?: "oAuth2"
| "apiToken";
entity?:
| "person"
| "deal"
| "organization"
| "user"
| "*"
| "pipeline"
| "product"
| "note"
| "activity"
| "activityType"
| "stage";
incomingAuthentication?: "none"
| "basicAuth";
object?:
| "person"
| "deal"
| "organization"
| "user"
| "*"
| "pipeline"
| "product"
| "note"
| "activity"
| "activityType"
| "stage";
}Properties§
§§§§
readonly action?:
| "create"
| "delete"
| "deleted"
| "*"
| "updated"
| "change"
| "added"
| "merged"§
readonly authentication?: "oAuth2" | "apiToken"Default: "apiToken"
readonly entity?:
| "person"
| "deal"
| "organization"
| "user"
| "*"
| "pipeline"
| "product"
| "note"
| "activity"
| "activityType"
| "stage"Type of object to receive notifications about Default: "*"
readonly incoming Authentication?: "none" | "basicAuth"If authentication should be activated for the webhook (makes it more secure) Default: "none"
readonly object?:
| "person"
| "deal"
| "organization"
| "user"
| "*"
| "pipeline"
| "product"
| "note"
| "activity"
| "activityType"
| "stage"Type of object to receive notifications about Default: "*"
Type of action to receive notifications about Default: "*"