# Json feeder without String body

**URL:** https://community.gatling.io/t/json-feeder-without-string-body/6355
**Category:** Gatling (Open-Source)
**Created:** [December 20, 2021, 3:23pm UTC](https://community.gatling.io/t/json-feeder-without-string-body/6355 "2021-12-20T15:23:57Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Akhil\_Amarneni](https://avatars.discourse-cdn.com/v4/letter/a/5daacb/32.png) [@Akhil\_Amarneni](https://community.gatling.io/u/Akhil_Amarneni)
#### Post date: [December 20, 2021, 3:23pm UTC](https://community.gatling.io/t/json-feeder-without-string-body/6355/1 "2021-12-20T15:23:57Z")

</div>

Hi,

I am trying to send entire json body with StringfyBody as json is very large. How I need do it

val feeder = jsonFile(“data/remove/sample.json”)

feed(feeder)  
.exec(http (“test”)  
.post ("/shift/request/123")  
.body ( )  
.check (status.is (200)))

What I need to pass into my body? As sample json as array of jsons and I need to pass each json as request body ?
