# Cannot see request body

**URL:** https://forum.openreplay.com/t/cannot-see-request-body/127
**Category:** Issues & Bugs
**Created:** [July 23, 2024, 8:49pm UTC](https://forum.openreplay.com/t/cannot-see-request-body/127 "2024-07-23T20:49:37Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![dave-the-developer](https://avatars.discourse-cdn.com/v4/letter/d/7ab992/32.png) [@dave-the-developer](https://forum.openreplay.com/u/dave-the-developer)
#### Post date: [July 23, 2024, 8:49pm UTC](https://forum.openreplay.com/t/cannot-see-request-body/127/1 "2024-07-23T20:49:38Z")

</div>

Hello, i’ve some problems to capture request payloads. OR is update in front and back to the last versions. This is my network config:  
network: {  
failuresOnly: false,  
capturePayload: true,  
useProxy: false,  
sanitizer: data =\> {  
console.log(  
~ file: openReplay.jsx:103 ~ initOpenReplay ~ data:',  
data  
);  
_return_ data;  
},  
},  
and all body are null:

---

<div class="post-metadata">

### Author: ![mehdi](https://dub1.discourse-cdn.com/flex006/user_avatar/forum.openreplay.com/mehdi/32/50_2.png) [@mehdi](https://forum.openreplay.com/u/mehdi)
#### Post date: [July 23, 2024, 8:51pm UTC](https://forum.openreplay.com/t/cannot-see-request-body/127/2 "2024-07-23T20:51:35Z")

</div>

That’s because it’s a `GET` request and therefore doesn’t have a request body. More that here in the [HTTP Specs](https://www.rfc-editor.org/rfc/rfc9110.html).
