HTTP(s) Request
The HTTP Request node is one of the most versatile nodes in workflow. It allows you to make HTTP requests to query data from any app or service with a REST API.
The HTTP Request connector allows workflows to send HTTP requests to external applications or services that provide a REST API. This connector can be used to retrieve data, send data, or interact with external systems directly from a workflow. It is one of the most versatile connectors and is commonly used to integrate iMBrace workflows with third-party platforms and services.
When using this connector, you are creating a REST API request, so basic familiarity with API concepts such as endpoints, request methods, headers, and request bodies may be helpful.
Connector Parameters
Method
Select the method to use for the request:
DELETE
GET
HEAD
OPTIONS
PATCH
POST
PUT
URL
Specify the API endpoint where the request will be sent.
Request Configuration
Additional information can be included with the request depending on the API being used.
Send Query Parameters: Include query parameters in the request. Query parameters are typically used for filtering or searching results.
Send Headers: Include request headers. Headers usually contain metadata such as authentication tokens or content types.
Send Body: Send additional data in the request body. This is commonly used with POST, PUT, or PATCH requests.
Refer to the API documentation of the service you are interacting with for details about the required parameters and request format.
Connector Options
Select Add Option to view and select additional settings.
Batching: control how to batch large numbers of input items.
Ignore SSL Issues: download the response even if SSL validation isn't possible.
Redirects: choose whether to follow redirects. Enabled by default.
Response: provide settings about the expected API response.
Pagination: handle query results that are too big for the API to return in a single call.
Proxy: use this if you need to specify an HTTP proxy.
Timeout: set a timeout for the request.
Last updated