mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-12 09:03:40 +00:00
23 lines
621 B
Plaintext
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
|
|
```
|