get specific data from a call rest services

0
I want  to show data in my mendix app passed on the input token from the user the  problim is that in tha data that i get there is many token and  i want to show the data that is have tha same token that the user did input and i send  the token as a parameter in the location in the get method but every time i gat all data 
asked
1 answers
0

First thing u need to check is the Rest service whether they respect the param u are passing and giving expected results.Do it using postman.

Once you get the param workig in postman u can mimick the same in mendix,and then put a debugger in the code to check what is the output/input etc.

also u can enable the trace debug option on RestConsume log which will print the rest logs like url body response etc to logs

this will make the debugging life easy.

answered