Make HTTP requests
Make HTTP API calls from your flows to set up test data or verify backend state.
Making Requests
const response = http.request('https://example.com', {
method: "PATCH",
body: JSON.stringify({ status: "active" })
});Working with JSON
{
"id": 1,
"email": "[email protected]",
"profile": {
"name": "Jane Doe",
"age": 32
}
}Configuration Options
Headers
Request Body
Multipart Form Data
The response object
response objectField Name
Type
Description
Usage example
Next step
Last updated