HTTP Request without Retry
What it does
- Takes 4 inputs and produces 5 outputs.
Inputs
| Name | Type | Description |
|---|---|---|
| Method | String | The HTTP Method. Examples: GET, POST One of: GET, POST, PUT, PATCH, DELETE |
| URL | String | Example: https://user:[email protected]/data?q=0 |
| Headers | Object | The HTTP Headers. Example: {"Authorization": "Bearer xyz", "X-abc": "string"} |
| Message Body String | Object | The HTTP request message body. Can be null or a (non)empty String |
Outputs
| Name | Type | Description |
|---|---|---|
| Response status Code | Number | Examples: 200, 404 |
| Response Status Text | String | Example: Not Found |
| Response Headers | Object | The HTTP Response Headers |
| Response Body | Object | The HTTP Response Message Body |
| Action Status | String | Whether the action has succeeded or not |
Updated 21 days ago
Did this page help you?