Connect your account
- Add a KnoxCall step to a Zap and choose Connect a new account.
- Pick your Environment (Production or Sandbox).
- Paste the Client ID and Client Secret from KnoxCall → Security → API credentials.
- Zapier verifies the connection and labels it with your tenant slug.
Triggers
Instant (delivered the moment an event happens):- New Completed / Successful / Failed Request, plus 4xx, 5xx, received, redirect, and timeout variants — optionally filtered to a single route.
- New Audit Event (SIEM) — every config change, auth event, and rotation.
Actions
The headline, security-forward actions:- Proxy a Request (inject secrets) — call any API through KnoxCall with
{{token: TOKEN_ID}}placeholders resolved server-side. - Tokenize / Bulk Tokenize / Detokenize — keep PII out of your Zaps.
- Encrypt / Decrypt / Sign / Sign JWT — managed cryptography.
- Issue / Revoke Database Credential, Issue / Revoke Certificate, Rotate OAuth Client Secret, Create / Set Secret.
Searches
Find Route, Find Secret, Get OAuth2 Secret Token, Get Crypto Public Key, List Audit Logs, Get Account / Usage, and more — handy for lookups inside a Zap.Example: tokenize a card number before storing it
- Trigger: New row in your form/CRM app.
- KnoxCall → Tokenize a Value — vault
cards, value = the card number. - Store the returned token (not the raw number) in your database.
- Later, KnoxCall → Proxy a Request to your payment processor with
{{token: TOKEN_ID}}in the body — the real number is injected only at the edge.