Skip to content
For LLMsView as Markdown·

HashiCorp Vault

Manage secrets, authentication, and encryption via HashiCorp Vault.

DetailValue
CategorySecurity
Base URLhttps://vault.example.com/v1
AuthenticationAPI Key
Endpoints6
Connector keyhashicorp-vault

Using HashiCorp Vault in a workflow

  1. Go to Connections and click New Connection.
  2. Pick HashiCorp Vault from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /secret/data/{path}Read a secret
POST /secret/data/{path}Write a secret
DELETE /secret/data/{path}Delete a secret
GET /sys/healthCheck Vault health
GET /sys/mountsList secret engines
POST /transit/encrypt/{name}Encrypt data

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /secret/data/{path}

Read a secret

DetailValue
Operation IDsecurity.readSecret
MethodGET
Path/secret/data/{path}

Parameters

NameLocationTypeRequired
pathpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.readSecret.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.

POST /secret/data/{path}

Write a secret

DetailValue
Operation IDsecurity.writeSecret
MethodPOST
Path/secret/data/{path}

Parameters

NameLocationTypeRequired
pathpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.writeSecret.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.

DELETE /secret/data/{path}

Delete a secret

DetailValue
Operation IDsecurity.deleteSecret
MethodDELETE
Path/secret/data/{path}

Parameters

NameLocationTypeRequired
pathpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.deleteSecret.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.

GET /sys/health

Check Vault health

DetailValue
Operation IDsecurity.checkHealth
MethodGET
Path/sys/health

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.checkHealth.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.

GET /sys/mounts

List secret engines

DetailValue
Operation IDsecurity.listMounts
MethodGET
Path/sys/mounts

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.listMounts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.

POST /transit/encrypt/{name}

Encrypt data

DetailValue
Operation IDsecurity.encrypt
MethodPOST
Path/transit/encrypt/{name}

Parameters

NameLocationTypeRequired
namepathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your HashiCorp Vault connection from the Connection dropdown.
  3. In the Operation dropdown, select security.encrypt.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream HashiCorp Vault API reference.