Hi All,
Looking for a bit of help here when using the Custom API call.
Essentially one of my search parameters is an Array, and I can examine the query string of the search module but i cannot replicate this query string using the Custom API call module.
Search module query string (looking at the console):
{
"fields": "[\"projectID\"]",
"$$LIMIT": 200,
"categoryID": "64b7e4ef001a3661c1ee9cb6250dd642",
"categoryID_Mod": "eq",
"DE:Array": [
"a",
"b"
],
"DE:Array_Mod": "in"
}
Custom API call module query string (looking at the console):
{
"fields": "projectID",
"categoryID": "64b7e4ef001a3661c1ee9cb6250dd642",
"categoryID_Mod": "eq",
"DE:Array" "a, b",
"DE:Array_Mod": "in"
}
Looking at it a bit closer I'm not even sure how to use the query string correctly to request more than one field back using this method?
This is what i am entering
Thanks