Skip to main content
The Navigate node directs the browser to a specified URL. This is typically used to move between pages during a workflow.

Parameters

ParameterTypeRequiredDescription
urlstringYesThe URL to navigate to

Examples

Basic Navigation

Navigate to a specific page:
{
  "id": "abc123",
  "name": "Go to dashboard",
  "action": "NAVIGATE",
  "parameters": {
    "url": "https://app.example.com/dashboard"
  }
}
Use input variables to dynamically set the URL:
{
  "id": "abc123",
  "name": "Navigate to user profile",
  "action": "NAVIGATE",
  "parameters": {
    "url": "https://app.example.com/users/{{context.inputs.user_id}}"
  }
}
Use the reserved keyword back to navigate to the previous page:
{
  "id": "abc123",
  "name": "Navigate back",
  "action": "NAVIGATE",
  "parameters": {
    "url": "back"
  }
}
Use previously extracted data to navigate:
{
  "id": "abc123",
  "name": "Go to order details",
  "action": "NAVIGATE",
  "parameters": {
    "url": "{{context.order_url}}"
  }
}

Notes

  • The back keyword triggers browser back navigation, equivalent to clicking the browser’s back button
  • URLs can contain template variables using the {{}} syntax
  • The browser waits for the page to load before proceeding to the next node