Generate JWT Token
Use this action when a later step needs a signed token for an external request or a short-lived secure handoff.
Best for
- Authenticating a later HTTP request
- Passing a temporary token to another system
- Restricting access with a short validity window
Main fields
| Field | What it does |
|---|---|
| Advanced mode | Unlocks extra security options |
| Duration | Sets how long the token stays valid |
| Allowed IPs | Restricts the token to specific IP addresses |
What later steps can use
The token is usually available at:
step(N).jwt
Tips
- Keep the duration short unless you have a strong reason not to.
- Only use IP restrictions when the receiving system has a stable IP range.
- Treat the generated token as sensitive data in later steps.