First, @RVK, luckily REST is a programming model that does not rely on any content description protocol like XML (juck, I will shoot it if I have to) or JSON. That aside.
If you are referring to hidden fields it is most likely that these are server side only and therefor are not (meant to be) accessible for your clients. You can make them accessible by for example writing stored procedures that eventually produce the desired result and can be posted back to the client side.
It is never a good idea to have (client side ) hidden fields not showing up in the rendered client side pages. That is a security disaster for you. Don't rely on a browser on the other side. It may very well be simply a traffic analyzer posing as a browser. That would spot these hidden fields and depending on good or evil intent WILL exploit them.
Never ever maintain state (from your info) at the client side, i.e. don't use cookies in any form (which are in effect a sublimation of hidden fields) except for session maintenance, not database related stuff. But I am calling from being buried deep in the sands of a desert. And everybody knows the above is the case.
(Reason: every computer scientist knows state is often not necessary, client side state is evil and marketing/advertising is the only reason it still exists on the interweb.