HTTP Request
The HTTP Request step allows you to send HTTP requests to a server.
UI component values and other variables can be sent as request parameters using the {{ui.input.value}}
syntax.
By default, you don't even need to connect an HTTP data source to send HTTP requests. You simply need to specify the URL and send the request.
Action configuration
The HTTP Request action step supports the following types of requests: GET, POST, DELETE, PUT, HEAD, OPTIONS, PATCH.
Other settings you can configure include the following:
URL - The API or webhook URL to send the request to.
Headers - HTTP headers to include in the request.
Body - The HTTP body to send with the request, commonly used to send Form data or JSON data. Such HTTP methods as POST, DELETE, PUT, and PATCH require a request Body that you can send as:
Raw
JSON (sent as a JSON string)
Form Data
x-www-form-urlencoded
Binary
Query Params - HTTP query parameters to include in the request.
Data transformation
If the database returns its data in a different format than expected for the components, you can modify it. For example, you can turn on the Transform result toggle in the action's settings or add a new JavaScript Code step to transform the data.
Here are some examples of possible data transformations:
Access an inner array object and map it to a new array:
Add a new key to the array of objects:
Filter an array of objects (short version):
Multiline version:
Input & Output
Input
No specific input is required. The {data}}
and {{params}}
variables can be used to access the result of the previous step or incoming action's parameters.
Output
{{data}}
- API request result{{error}}
- API request error{{res}}
- full HTTP response object
Examples
Adding additional values
Changing values
Deleting unwanted values
alternatively:
Joining array values
Using default values
Importing cURL commands
UI Bakery also allows importing cURL commands as HTTP actions.
While creating an HTTP Request action, you can click the Import as CURL button and paste your command in the box. The system will fill in the configuration automatically.
Use cases
Sending arrays in Query parameters
If you need to send an array of items in the query parameters, you can do it by iterating over a collection and building the array query parameter from it.
Here is an example:
Let's say you have a Select component with the Multiple select setting enabled and you want to include the selected values in the query parameters.
The selected values from the component will be available as {{ui.select.value}}
in the URL field. So, to build the array query parameter, you can iterate over the selected values resulting in something like this:
Loading items from API and modifying the result
Create an action, select your HTTP API data source and the HTTP Request action type.
Select the GET method and set the API URL, for example:
https://example-data.draftbit.com/users?_limit=5
Turn on the Transform result toggle and add a JavaScript function to modify the result:
Click Execute action and check the result.
Sending a Form using API request
Let's take look at how to send a form to make a POST API request:
Add the Form component to your working area.
Create a new action, select your HTTP API data source and the HTTP Request action type.
Select the POST method and set the API URL.
Next, click on the Body tab and change its format to JSON. There, reference your newly added form as
{{ui.myForm.value}}
.
Assign this action to the Form's On Submit trigger.
Fill in the Form, click Submit and check the result.
Now, whenever you click the Submit button, the action will be executed and the POST API request will be sent to the API.
Troubleshooting & debugging
Sometimes your API may return an error, for example, if a required field is missing or the value is incorrect. In such cases, you can open the Payload tab of the action and investigate header, url, body, and other parameters to check the data sent to the server.
Last updated
Was this helpful?