&
symbol. For example:
?tags=urgent&tags=customer&tags=iam
MM/DD/YYYY%20HH:MM
(%20
represent a space in the url)text
input type is email, use ?email=johndoe@gmail.com
in the URL. When the page is loaded, any query parameters that match input field names will automatically populate those fields
URL Query Parameter Syntax
?
– Indicates the start of the query string in a URL.=
– Assigns a value to a key in a key-value pair.&
– Separates multiple key-value pairs in the query string.%
– Used to encode special characters in URLs (percent-encoding), e.g., a space becomes %20
.URL Query Parameters Examples
https://your-tenant.blinkops.com/forms/trigger/123e4567-e89b-12d3-a456-426614174000?email=ash@gmail.com&subscribe=true
When visited, this will populate the email field with the input ash@gmail.com
and check the subscribe checkbox.https://your-tenant.blinkops.com/forms/trigger/123e4567-e89b-12d3-a456-426614174000?quantity=3&tags=urgent&tags=customer
When visited, this will populate the quantity field with the number 3 and select both “urgent” and “customer” options in the tags field.your-tenant.blinkops.com
your-tenant
with your own organization’s tenant subdomain.
/forms/trigger/{form_id}
/trigger/
(123e4567-e89b-12d3-a456-426614174000
) is the Form Trigger ID.email=ash@gmail.com
, tags=urgent
)Web Form Trigger (Start of Workflow)
Switch Case Logic (Route Request Type)
Routing & Request Processing (Executing Actions)
User Feedback (Confirmation & Tracking)