Skip to content

HTTP Client

Reference


Makes an HTTP request and returns the response data.

Categories: [helpers]

Version: 1


Connections

Version: 1

API Key

Properties

NameTypeControl TypeDescription
KeySTRINGTEXT
ValueSTRINGTEXT
Add toSTRINGSELECT

Bearer Token

Properties

NameTypeControl TypeDescription
TokenSTRINGTEXT

Basic Auth

Properties

NameTypeControl TypeDescription
UsernameSTRINGTEXT
PasswordSTRINGTEXT

Digest Auth

Properties

NameTypeControl TypeDescription
UsernameSTRINGTEXT
PasswordSTRINGTEXT

OAuth2 Authorization Code

Properties

NameTypeControl TypeDescription
Authorization URLSTRINGTEXT
Token URLSTRINGTEXT
Client IdSTRINGTEXT
Client SecretSTRINGTEXT
Header PrefixSTRINGTEXT
ScopesSTRINGTEXT_AREAOptional comma-delimited list of scopes

OAuth2 Implicit Code

Properties

NameTypeControl TypeDescription
Authorization URLSTRINGTEXT
Client IdSTRINGTEXT
Client SecretSTRINGTEXT
Header PrefixSTRINGTEXT
ScopesSTRINGTEXT_AREAOptional comma-delimited list of scopes

OAuth2 Client Credentials

Properties

NameTypeControl TypeDescription
Token URLSTRINGTEXT
Client IdSTRINGTEXT
Client SecretSTRINGTEXT
Header PrefixSTRINGTEXT
ScopesSTRINGTEXT_AREAOptional comma-delimited list of scopes

Actions

GET

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.

POST

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Body Content TypeSTRINGSELECTContent-Type to use when sending body parameters.
Body Content - JSON{}OBJECT_BUILDERBody Parameters to send.
Body Content - XML{}OBJECT_BUILDERXML content to send.
Body Content - Form Data{}OBJECT_BUILDERBody parameters to send.
Body Content - Form URL-Encoded{}OBJECT_BUILDERBody parameters to send.
Body Content - RawSTRINGTEXTThe raw text to send.
Body Content - BinaryFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file to upload.
Content TypeSTRINGTEXTMime-Type to use when sending raw body content.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.

PUT

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Body Content - JSON{}OBJECT_BUILDERBody Parameters to send.
Body Content - XML{}OBJECT_BUILDERXML content to send.
Body Content - Form Data{}OBJECT_BUILDERBody parameters to send.
Body Content - Form URL-Encoded{}OBJECT_BUILDERBody parameters to send.
Body Content - RawSTRINGTEXTThe raw text to send.
Body Content - BinaryFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file to upload.
Body Content TypeSTRINGSELECTContent-Type to use when sending body parameters.
Body Content - JSON{}OBJECT_BUILDERBody Parameters to send.
Body Content - XML{}OBJECT_BUILDERXML content to send.
Body Content - Form Data{}OBJECT_BUILDERBody parameters to send.
Body Content - Form URL-Encoded{}OBJECT_BUILDERBody parameters to send.
Body Content - RawSTRINGTEXTThe raw text to send.
Body Content - BinaryFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file to upload.
Content TypeSTRINGTEXTMime-Type to use when sending raw body content.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.

PATCH

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Body Content - JSON{}OBJECT_BUILDERBody Parameters to send.
Body Content - XML{}OBJECT_BUILDERXML content to send.
Body Content - Form Data{}OBJECT_BUILDERBody parameters to send.
Body Content - Form URL-Encoded{}OBJECT_BUILDERBody parameters to send.
Body Content - RawSTRINGTEXTThe raw text to send.
Body Content - BinaryFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file to upload.
Body Content TypeSTRINGSELECTContent-Type to use when sending body parameters.
Body Content - JSON{}OBJECT_BUILDERBody Parameters to send.
Body Content - XML{}OBJECT_BUILDERXML content to send.
Body Content - Form Data{}OBJECT_BUILDERBody parameters to send.
Body Content - Form URL-Encoded{}OBJECT_BUILDERBody parameters to send.
Body Content - RawSTRINGTEXTThe raw text to send.
Body Content - BinaryFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file to upload.
Content TypeSTRINGTEXTMime-Type to use when sending raw body content.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.

DELETE

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.

The request method to use.

Properties

NameTypeControl TypeDescription
URISTRINGTEXTThe URI to make the request to
Allow Unauthorized CertsBOOLEANSELECTDownload the response even if SSL certificate validation is not possible.
Response FormatSTRINGSELECTThe format in which the data gets returned from the URL.
Response FilenameSTRINGTEXTThe name of the file if the response is returned as a file object.
Headers{}OBJECT_BUILDERHeaders to send.
Query Parameters{}OBJECT_BUILDERQuery parameters to send.
Full ResponseBOOLEANSELECTReturns the full response data instead of only the body.
Follow All RedirectsBOOLEANSELECTFollow non-GET HTTP 3xx redirects.
Follow GET RedirectBOOLEANSELECTFollow GET HTTP 3xx redirects.
Ignore Response CodeBOOLEANSELECTSucceeds also when the status code is not 2xx.
ProxySTRINGTEXTHTTP proxy to use.
TimeoutINTEGERINTEGERTime in ms to wait for the server to send a response before aborting the request.