Tha’s true,as mentioned the request payload/body can’t be accessed with GET method other than the query param’s, unless there is some other rude way or totally impossible.
Reason Justification:
The GET request should only receive data (the server must not change its state). If you want to change data on the server, use POST, PUT, PATCH or DELETE methods. HTTP GET requests cannot have a message body. But you still can send data to the server using the URL parameters.
HTH,
RMG
#API-Management#webMethods#API-Gateway#API-Portal