Configure your Vault connection

To configure a Vault connection for your HTTP Request actions, you will need a Bearer token:
Dashboard > Actions > Forms > Flows > Actions > HTTP Request

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
}