Question Manoj Krishnamoorthy · Aug 4, 2017

How to get raw data when we post the rest services?

Hi,

I learning Cache Rest Services and I trying to implement it.

I learned get method in rest services.
I need to know How to get raw data (like json, xml, text....etc.) when we post the rest services?

Thank you

Comments

Rubens Silva · Aug 4, 2017

%request.Content will provide you the raw string (or stream) contained on your request payload.

0
Ed de Moel · Aug 4, 2017

In addition, %request.Data contains any parameters included in the URL.

0