goTo
Navigate to a specified URL.
Fields
| Field | Type | Description | Default |
|---|---|---|---|
| id | string | Optional. ID of the step. | Generated UUID |
| description | string | Optional. Description of the step. | |
| action | string | Required. Action to perform. | |
| url | string | Required. URL to navigate to. | |
| origin | string | Optional. Protocol and domain to navigate to. Prepended to url. |
Examples
{ "action": "goTo", "url": "https://www.google.com"}{ "id": "ddec5e20-2e81-4f38-867c-92c8d9516755", "description": "This is a test!", "action": "goTo", "url": "https://www.google.com"}{ "id": "ddec5e20-2e81-4f38-867c-92c8d9516756", "description": "This is a test!", "action": "goTo", "url": "/search", "origin": "https://www.google.com"}