Interface PipedriveTriggerNodeParameters

Source
interface PipedriveTriggerNodeParameters {
    action?:
        | "create"
        | "delete"
        | "deleted"
        | "*"
        | "updated"
        | "change"
        | "added"
        | "merged";
    authentication?: "oAuth2"
    | "apiToken";
    entity?:
        | "person"
        | "deal"
        | "organization"
        | "user"
        | "*"
        | "pipeline"
        | "activity"
        | "note"
        | "product"
        | "activityType"
        | "stage";
    incomingAuthentication?: "none"
    | "basicAuth";
    object?:
        | "person"
        | "deal"
        | "organization"
        | "user"
        | "*"
        | "pipeline"
        | "activity"
        | "note"
        | "product"
        | "activityType"
        | "stage";
}

Properties§

Source§

readonly action?:
    | "create"
    | "delete"
    | "deleted"
    | "*"
    | "updated"
    | "change"
    | "added"
    | "merged"

Type of action to receive notifications about Default: "*"

Source§

readonly authentication?: "oAuth2" | "apiToken"

Default: "apiToken"

Source§

readonly entity?:
    | "person"
    | "deal"
    | "organization"
    | "user"
    | "*"
    | "pipeline"
    | "activity"
    | "note"
    | "product"
    | "activityType"
    | "stage"

Type of object to receive notifications about Default: "*"

Source§

readonly incomingAuthentication?: "none" | "basicAuth"

If authentication should be activated for the webhook (makes it more secure) Default: "none"

Source§

readonly object?:
    | "person"
    | "deal"
    | "organization"
    | "user"
    | "*"
    | "pipeline"
    | "activity"
    | "note"
    | "product"
    | "activityType"
    | "stage"

Type of object to receive notifications about Default: "*"