Skip to main content

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

FieldWhat it does
Advanced modeUnlocks extra security options
DurationSets how long the token stays valid
Allowed IPsRestricts 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.