Skip to main content

goTo

Navigate to a specified URL.

Fields

FieldTypeDescriptionDefault
idstringOptional. ID of the step.Generated UUID
descriptionstringOptional. Description of the step.
actionstringRequired. Action to perform.
urlstringRequired. URL to navigate to.
originstringOptional. 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"
}