Files
showbridge-docs/src/content/docs/processors/http/request/do.mdx
T
2026-06-01 18:03:47 -05:00

23 lines
621 B
Plaintext

---
title: Make HTTP Request
sidebar:
label: Make Request
order: 1
---
import SchemaInfo from '../../../../../components/SchemaInfo.astro';
This process will make an HTTP request to the specified URL using the specified method. The response will be passed through to the next processor in the chain. This processor will return an error if the request fails for any reason (e.g. network error, invalid URL, etc.).
<SchemaInfo type="processor" id="http.request.do"/>
### Example
Make a GET request to `https://example.com`
```yaml
- type: http.request.do
params:
method: GET
url: https://example.com
```