Interface TypeformTriggerNodeParameters

Source
interface TypeformTriggerNodeParameters {
    authentication?: "oAuth2" | "accessToken";
    formId?: string;
    onlyAnswers?: boolean;
    simplifyAnswers?: boolean;
}

Properties§

Source§

readonly authentication?: "oAuth2" | "accessToken"

Default: "accessToken"

Source§

readonly formId?: string

Form which should trigger workflow on submission. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getForms"}

Source§

readonly onlyAnswers?: boolean

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

Source§

readonly simplifyAnswers?: boolean

Whether to convert the answers to a key:value pair ("FIELD_TITLE":"USER_ANSER") to be easily processable Default: true