HTTP Request
Configure your Vault connection
To configure a Vault connection for your HTTP Request actions, you will need a Bearer token:

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-Typeheader. 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 trueorfalsebased on thestatusof the response. | 
Output object example
{
  "headers": {
    ...
  },
  "status": 200,
  "body": {
    ...
  },
  "success": true
}Was this helpful?
/