Interface SurveyMonkeyTriggerNodeParameters

Source
interface SurveyMonkeyTriggerNodeParameters {
    authentication?: "oAuth2" | "accessToken";
    collectorIds?: string[];
    event?:
        | "collector_created"
        | "collector_deleted"
        | "collector_updated"
        | "response_completed"
        | "response_created"
        | "response_deleted"
        | "response_disqualified"
        | "response_overquota"
        | "response_updated"
        | "survey_created"
        | "survey_deleted"
        | "survey_updated";
    objectType?: "survey"
    | "collector";
    onlyAnswers?: boolean;
    resolveData?: boolean;
    surveyId?: string;
    surveyIds?: string[];
}

Properties§

Source§

readonly authentication?: "oAuth2" | "accessToken"

Default: "accessToken"

Source§

readonly collectorIds?: string[]

Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getCollectors","loadOptionsDependsOn":["surveyId"]}

Source§

readonly event?:
    | "collector_created"
    | "collector_deleted"
    | "collector_updated"
    | "response_completed"
    | "response_created"
    | "response_deleted"
    | "response_disqualified"
    | "response_overquota"
    | "response_updated"
    | "survey_created"
    | "survey_deleted"
    | "survey_updated"

Source§

readonly objectType?: "survey" | "collector"

Source§

readonly onlyAnswers?: boolean

Whether to return only the answers of the form and not any of the other data Default: true

Source§

readonly resolveData?: boolean

By default the webhook-data only contain the IDs. If this option gets activated, it will resolve the data automatically. Default: true

Source§

readonly surveyId?: string

Choose from the list, or specify an ID using an expression Default: [] Type options: {"loadOptionsMethod":"getSurveys"}

Source§

readonly surveyIds?: string[]

Choose from the list, or specify IDs using an expression Default: [] Type options: {"loadOptionsMethod":"getSurveys"}