Frends.HTTP.Request / 1.13.0
Summary
Sends an HTTP request with a text or JSON body and returns status, headers and body. The general-purpose Task for any HTTP API, and the fallback whenever no dedicated Frends Task exists.
Typical use — REST and webhook calls of every kind; the bytes variants are for payloads that must not be treated as text
Input class
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| Method | Method |
GET |
GET |
The HTTP Method to be used with the request. Possible values:
|
| ResultMethod | ReturnFormat |
JToken |
REST |
The HTTP result method to be used with the request. Possible values:
|
| Url | String |
https://example.org/path/to |
https://example.org/path/to |
The URL with protocol and path. You can include query parameters directly in the url. |
| Message | String |
– | { "Body": "Message" } |
The message text to be sent with the request. |
| Headers | Header[] |
– | Name: Header, Value: HeaderValue |
List of HTTP headers to be added to the request. |