JavaScript must be enabled in order to use this site.Please enable JavaScript in your browser and refresh the page. Reading Body Content of Request Procedure In the request, get the ContentSource. From the ContentSource, get the inputStream. Read content from the InputStream. ContentSource body = event.getCallContext().getRequest().getBody(); final InputStream inputStream = body.getInputStream() ; //use input stream to read content //Do something with the content Note: Refer working code in examples/ReadRequestBody.java. Copyright © 2022. Cloud Software Group, Inc. All Rights Reserved.