interface HttpRequestV1NodeParameters {
allowUnauthorizedCerts?: boolean;
authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1";
binaryPropertyName?: string;
bodyParametersJson?: string;
bodyParametersUi?: {
parameter: { name?: string; value?: string }[];
};
dataPropertyName?: string;
headerParametersJson?: string;
headerParametersUi?: {
parameter: { name?: string; value?: string }[];
};
jsonParameters?: boolean;
options?: {
batchInterval?: number;
batchSize?: number;
bodyContentCustomMimeType?: string;
bodyContentType?: | "json"
| "raw"
| "multipart-form-data"
| "form-urlencoded";
followAllRedirects?: boolean;
followRedirect?: boolean;
fullResponse?: boolean;
ignoreResponseCode?: boolean;
proxy?: string;
splitIntoItems?: boolean;
timeout?: number;
useQueryString?: boolean;
};
queryParametersJson?: string;
queryParametersUi?: {
parameter: { name?: string; value?: string }[];
};
requestMethod?: | "GET"
| "POST"
| "DELETE"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "PUT";
responseFormat?: "string"
| "json"
| "file";
sendBinaryData?: boolean;
url?: string;
}Properties§
readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"The way to authenticate Default: "none"
readonly binary Property Name?: stringFor Form-Data Multipart, they can be provided in the format: "sendKey1:binaryProperty1,sendKey2:binaryProperty2
Default: "data"
readonly body Parameters Json?: stringBody parameters as JSON or RAW
readonly body Parameters Ui?: { ... }The body parameter to send Default: {} Type options: {"multipleValues":true}
readonly data Property Name?: stringName of the property to which to write the response data Default: "data"
readonly header Parameters Json?: stringHeader parameters as JSON or RAW
readonly header Parameters Ui?: { ... }The headers to send Default: {} Type options: {"multipleValues":true}
readonly json Parameters?: booleanWhether the query and/or body parameter should be set via the value-key pair UI or JSON/RAW
readonly options?: { ... }Default: {}
readonly query Parameters Json?: stringQuery parameters as JSON (flat object)
readonly query Parameters Ui?: { ... }The query parameter to send Default: {} Type options: {"multipleValues":true}
readonly request Method?:
| "GET"
| "POST"
| "DELETE"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "PUT"The request method to use Default: "GET"
readonly response Format?: "string" | "json" | "file"The format in which the data gets returned from the URL Default: "json"
readonly send Binary Data?: booleanWhether binary data should be send as body
readonly url?: stringThe URL to make the request to
Whether to download the response even if SSL certificate validation is not possible