auth0 actions
Actions are secure, tenant-specific, versioned functions written in Node.js that execute at certain points within the Auth0 platform. Actions are used to customize and extend Auth0’s capabilities with custom logic.
Schema Discovery & JSON Input
Use ‘–schema’ on a command to print its request payload schema, and ‘–data’ to provide that payload programmatically (validated against the schema before the call).
Examples: auth0 actions create –schema # Show the create payload schema auth0 actions create –data @action.json # Create from JSON file auth0 actions create –data ‘{“name”:”…”}’ # Create from inline JSON
For more details: https://auth0.com/docs/api/management/v2
Commands
- auth0 actions create - Create a new action
- auth0 actions delete - Delete an action
- auth0 actions deploy - Deploy an action
- auth0 actions diff - Show diff between two versions of an Actions
- auth0 actions list - List your actions
- auth0 actions modules - Manage action modules
- auth0 actions open - Open the settings page of an action
- auth0 actions show - Show an action
- auth0 actions update - Update an action