goTo
Fields
Field | Type | Description | Default |
---|---|---|---|
url | string | Optional. URL to navigate to. Can be a full URL or a path. If a path is provided and origin is specified, prepends origin to url . If a path is provided but origin isn't specified, attempts to navigate relative to the current URL, if any. | |
origin | string | Optional. Protocol and domain to navigate to. Prepended to url . |
Examples
"https://www.google.com"
"/search"
{
"url": "https://www.google.com"
}
{
"url": "/search",
"origin": "www.google.com"
}