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§
Source§readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"
readonly authentication?:
| "oAuth2"
| "none"
| "basicAuth"
| "digestAuth"
| "headerAuth"
| "queryAuth"
| "oAuth1"
The way to authenticate Default: "none"
Source§readonly binary Property Name?: string
readonly binary Property Name?: string
For Form-Data Multipart, they can be provided in the format: "sendKey1:binaryProperty1,sendKey2:binaryProperty2
Default: "data"
Source§readonly body Parameters Ui?: { parameter: { name?: string; value?: string }[] }
readonly body Parameters Ui?: { parameter: { name?: string; value?: string }[] }
The body parameter to send Default: {} Type options: {"multipleValues":true}
Source§readonly data Property Name?: string
readonly data Property Name?: string
Name of the property to which to write the response data Default: "data"
Source§readonly header Parameters Ui?: { parameter: { name?: string; value?: string }[] }
readonly header Parameters Ui?: { parameter: { name?: string; value?: string }[] }
The headers to send Default: {} Type options: {"multipleValues":true}
Source§readonly json Parameters?: boolean
readonly json Parameters?: boolean
Whether the query and/or body parameter should be set via the value-key pair UI or JSON/RAW
Source§readonly 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;
}
readonly 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;
}
Default: {}
Source§readonly query Parameters Ui?: { parameter: { name?: string; value?: string }[] }
readonly query Parameters Ui?: { parameter: { name?: string; value?: string }[] }
The query parameter to send Default: {} Type options: {"multipleValues":true}
Source§readonly request Method?:
| "GET"
| "POST"
| "DELETE"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "PUT"
readonly request Method?:
| "GET"
| "POST"
| "DELETE"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "PUT"
The request method to use Default: "GET"
Whether to download the response even if SSL certificate validation is not possible