Skip to main content

Configure your HTTP Vault Connection

Learn how to configure a Vault Connection for your HTTP Request Flow Actions at HTTP Vault Connection.

HTTP Request

The HTTP request action lets you call an external API or service, and process the response.

Input settings

ParameterDescription
MethodThe HTTP method. Available values include:
  • GET
  • POST
  • PUT
  • PATCH
  • DELETE
Content typeThe Content-Type header. Available values include:
  • application/json
  • application/x-www-form-urlenconded
  • application/xml
BodyThe body of the request.
HeadersThe headers of the request.
URL paramsThe URL parameters. These parameters will be automatically URL-encoded.
Enable Basic AuthEnables authentication with username and password.

Output object

PropertyTypeDescription
headersObjectThe headers of the response.
bodyObjectThe body of the response.
statusNumberThe status code of the response.
successBooleanReturns true or false based on the status of the response.

Output object example

{
  "headers": {
    ...
  },
  "status": 200,
  "body": {
    ...
  },
  "success": true
}