What is the problem you are trying to solve?
We may not need to test all parameters and need to skip some special parameters, such as: cookie=, action=
How are you currently being hindered by this problem?
Currently, there is only this variable insertion_point_base_value for give insert point
How would you like this problem to be solved?
I suggest adding this variable to represent the parameter name insertion_point_base_key
Any additional details?
The effect I want to achieve is as follows
given query or body insertion point then
if {base.request.url.path} matches ".*api.*" then
if not({insertion_point_base_key} matches "(cookie|action|token)") then
if {insertion_point_base_value} matches "^\d+$" then
send payload called one_quote:
appending: {addition}
end if
end if
end if
What is the problem you are trying to solve?
We may not need to test all parameters and need to skip some special parameters, such as: cookie=, action=
How are you currently being hindered by this problem?
Currently, there is only this variable
insertion_point_base_valueforgive insert pointHow would you like this problem to be solved?
I suggest adding this variable to represent the parameter name
insertion_point_base_keyAny additional details?
The effect I want to achieve is as follows