I am having a little issue with my if condition in groovy.
Virtually I want to look at a property value I\'ve set and ensure that is every instance on the response deliv
You compare a String (Number?) with List - it won't work. Instead, try to check if given location_id is present on location_id_request List:
String
Number
List
location_id
location_id_request
if (location_id in location_id_request) { //... }