Hi,
I have a question, im creating a web api to return data from a query and i have to remove a column from the response.
For example:
I have an expression rule to bring me all the centers we have and it returns "id" : null, "address" : "null", "officeName" : "null", "countryId" : null, "isAvailable" : true
How can i remove the column "countryId"?
Discussion posts and replies are publicly visible
you can do that in two ways:1. while fetching data from query, you can pass what ever fields you want in selection as below.
2. prepare custom response as you need
Thank you, this works