HTTP Request
The HTTP request action lets you call an external API or service, and process the response.
Input settings
Parameter | Description |
---|---|
Method |
The HTTP method. Available values include:
|
Content type |
The Content-Type header. Available values include:
|
Body | The body of the request. |
Headers | The headers of the request. |
URL params | The URL parameters. These parameters will be automatically URL-encoded. |
Enable Basic Auth | Enables authentication with username and password. |
Output object
Property | Type | Description |
---|---|---|
headers |
Object | The headers of the response. |
body |
Object | The body of the response. |
status |
Number | The status code of the response. |
success |
Boolean |
Returns true or false based on the status of the response.
|
Output object example
{
"headers": {
...
},
"status": 200,
"body": {
...
},
"success": true
}
Was this helpful?
/