# Data at request.params.xyz?

**URL:** https://forums.losant.com/t/data-at-request-params-xyz/5234
**Category:** Help
**Tags:** experience
**Created:** [August 25, 2023, 9:07pm UTC](https://forums.losant.com/t/data-at-request-params-xyz/5234 "2023-08-25T21:07:47Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![emcdee](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.losant.com/emcdee/32/4313_2.png) [@emcdee](https://forums.losant.com/u/emcdee)
#### Post date: [August 25, 2023, 9:07pm UTC](https://forums.losant.com/t/data-at-request-params-xyz/5234/1 "2023-08-25T21:07:47Z")

</div>

Real quick, what am I missing past the html render example?

Means the `request.params.cust` shown here returns no value 'in my rendered html -  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/getstructure/original/2X/4/4f369f445b2a99d6595d942309f2f4df01a9ef5b.png)

See it missing in the brackets here -  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/getstructure/original/2X/f/ffa74449bfd697894191d25a3cad3a8f9f58bdfe.png)

Whereas I’d expect it to be there per example -  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/getstructure/original/2X/d/d966c2ea5534253c9d5eba4cffba8df4d6846740.png)

Thanks, forgive if it’s obvious!

---

<div class="post-metadata">

### Author: ![Dylan\_Schuster](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.losant.com/dylan_schuster/32/2850_2.png) [@Dylan\_Schuster](https://forums.losant.com/u/Dylan_Schuster)
#### Post date: [August 26, 2023, 12:28am UTC](https://forums.losant.com/t/data-at-request-params-xyz/5234/2 "2023-08-26T00:28:27Z")

</div>

I stared at this for a loooong time before I figured it out so don’t feel bad. 🙂

The `<tr>` and `{{this.ID}}` indicates to me that you are rendering this inside of a loop, which means the root of your Handlebars context has changed.

So, you need to ‘go up a level’ to the parent object of the value you are iterating over:

```auto
{{../request.params.cust}}

```

---

<div class="post-metadata">

### Author: ![emcdee](https://sea1.discourse-cdn.com/flex015/user_avatar/forums.losant.com/emcdee/32/4313_2.png) [@emcdee](https://forums.losant.com/u/emcdee)
#### Post date: [August 28, 2023, 10:57am UTC](https://forums.losant.com/t/data-at-request-params-xyz/5234/3 "2023-08-28T10:57:06Z")

</div>

Ah yes, I see!

Thanks Dylan.
