Is it possible to format how an object is returned as JSON from PageMethod? i.e. removing the first d element from the data without writing JSON from scratch.
From {"d": {"name": "bob", "email": " bob@example.com "}}
To {"name": "bob", email: " bob@example.com "}
source
share