Unable to access request.body for GET or DELETE with error 'com.glide.rest.domain.ServiceException'Issue A third-party application is attempting to send information to a Scripted REST API with the HTTP Method they use is a GET. This GET method has both query parameters as well as content in the body. When trying to access the request body data within Servicenow you get the following error: "com.glide.rest.domain.ServiceException: Service error: attempt to access request body is not allowed when request method is GET or DELETE" CauseTypical "GET" and "DELETE" request will not have a request body and should contain all information in the URL parameters and Servicenow Code will not allow for them to be accessed.ResolutionYou cannot access the request body of a "GET" or "DELETE" request so the request trying to be created should be converted into a Scripted Inbound Web Service so it can be handled correctly.