cancel
Showing results for 
Search instead for 
Did you mean: 

GET vs POST from POSTMAN to SAP CPI

santoshsk926
Explorer
0 Kudos
1,310

Hi,

I am leaning SAP CPI and working on HTTPS, MAIL ADAPTER in my IFLOW iflow.png. I am sending JSON body from Postman to CPI using GET get.png and I could see the request is successfully processed in CPI, but when I use POST post.png the message is not even reaching CPI.

But out of my earlier experiences POST should also be able to make a successful call to CPI.

Please let me know what am I missing here....

View Entire Topic
MortenWittrock
Active Contributor

Hi Santosh

You likely have "CSRF Protected" checked in the HTTPS sender channel (it's the default setting). CSRF is additional security for modifying requests like POST, that the client must support. You can read more about it here. Postman supports CSRF, but for experimenting and learning you can also just turn it off.

Regards,

Morten

santoshsk926
Explorer
0 Kudos

Hi Morten,

This worked thankyou...