Long Data Type in JSON Structue for REST service

1
I am consuming a  REST service where for few attributes I am expecting long data type. Is there any way to achieve right now i guess (integer, boolean,decimal,string) only  available . Thanks in advance. 
asked
1 answers
2

Hi Rohit,

If you expect a long data type in your response, the example in your JSON snippet should be a long value too. I ran into the same challenge a few months ago. Just adding a high value fixed it for me.

{
"_ts":1490020778457845
}

 

answered