interface HttpRequestV2Props {
alwaysOutputData?: boolean;
disabled?: boolean;
executeOnce?: boolean;
httpBasicAuthCredentials?: Credentials<
HttpBasicAuthCredentials,
>;
httpDigestAuthCredentials?: Credentials<
HttpDigestAuthCredentials,
>;
httpHeaderAuthCredentials?: Credentials<
HttpHeaderAuthCredentials,
>;
httpQueryAuthCredentials?: Credentials<
HttpQueryAuthCredentials,
>;
label?: string;
maxTries?: number;
notes?: string;
notesInFlow?: boolean;
oAuth1ApiCredentials?: Credentials<
OAuth1ApiCredentials,
>;
oAuth2ApiCredentials?: Credentials<
OAuth2ApiCredentials,
>;
onError?: | "continueRegularOutput"
| "continueErrorOutput";
outputSchema?: Type<unknown, {}>;
parameters?: HttpRequestV2NodeParameters;
position?: NodePosition;
retryOnFail?: boolean;
}Properties§
§§§§§§
always Output Data?: boolean§disabled?: boolean§
execute Once?: booleanIf active, the node executes only once, with data from the first item it receives
readonly http Basic Auth Credentials?: Credentials<HttpBasicAuthCredentials>§readonly http Digest Auth Credentials?: Credentials<HttpDigestAuthCredentials>§readonly http Header Auth Credentials?: Credentials<HttpHeaderAuthCredentials>§readonly http Query Auth Credentials?: Credentials<HttpQueryAuthCredentials>§label?: string§max Tries?: numberNumber of times to attempt to execute the node before failing the execution
Enabled if retryOnFail is true
notes?: stringOptional note to save with the node
notes In Flow?: boolean§readonly o Auth 1 Api Credentials?: Credentials<OAuth1ApiCredentials>§readonly o Auth 2 Api Credentials?: Credentials<OAuth2ApiCredentials>§on Error?: "continueRegularOutput" | "continueErrorOutput"Action to take when the node execution fails When undefined, an error will stop the workflow execution
readonly output Schema?: Type<unknown, {}>{@inheritDoc OutputSchema}
readonly parameters?: HttpRequestV2NodeParameters§position?: NodePosition§retry On Fail?: booleanIf active, the node tries to execute again when it fails
If true, the node won't run but subsequent nodes WILL be executed