Forum Discussion
Anonymous
6 years agoNot applicable
Filter within API Request
Hello, i want to set a filter within a JSON Request. The code seems to be ok but i am not seeing the filtered data. for example Does someone has a tip for me how i can get the filte...
- Anonymous6 years ago
I have found the mistake. Some braces were missing.
filter = [type="C__OBJTYPE__APPLIKATIONSLISTE"], category = "C__CATG__CONTACT",
--> category = {"C......"}
Neverthless, thank you for your input !
Anonymous
6 years agoNot applicable
Hi Anonymous ,
I've tested it by sending this data for MS Flow and checking what comes through. The JSON seem to get to other side as expected.
Are you sure that in the request it should be
filter = [type="C__OBJTYPE__APPLIKATIONSLISTE"], category = "C__CATG__CONTACT",and not
filter = [type="C__OBJTYPE__APPLIKATIONSLISTE", category = "C__CATG__CONTACT"],
isn't category part of your filter?
Kind regards,
JB
Anonymous
6 years agoNot applicable
I have found the mistake. Some braces were missing.
filter = [type="C__OBJTYPE__APPLIKATIONSLISTE"], category = "C__CATG__CONTACT",
--> category = {"C......"}
Neverthless, thank you for your input !