Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Extracts the value from a specified query string parameter for a url field.Syntax
ExtractQueryStringParam(url, param_name)
Arguments
url - url string expression param_name - string expression indicating the parameter to extractExamples
ExtractQueryStringParam('http://someurl/?origin=135&target=example', 'origin') returns: ‘135’
ExtractQueryStringParam('http://someurl/?origin=135&origin=246,id=321', 'origin') returns: ‘135,246,id=321’