I've implemented an application using Moqui Framework. I have entities with 10 parameters. Via RestService, using the short-alias of an entity I can get its 10 parameters on JSON format. However I only need 4 parameters to be displayed. This is my actual result:
"exampleId": "100000",
"exampleTypeEnumId": "EXT_MADE_UP",
"description": "Yet another test description",
"exampleEmail": "example1@test.com",
"statusId": "EXST_IN_DESIGN",
"exampleName": "Test Example from JSON File",
"exampleSize": 123,
"testTime": "1970-01-01T06:30:00+0000",
"amount": 200.0,
"exampleItemSeqId": "02",
And this is my desired result:
"description": "Yet another test description",
"exampleName": "Test Example from JSON File",
"amount": 200.0,
"exampleItemSeqId": "02",