Concat a string in the API

I am trying to make a call to my API PUT call.
The call works fine with a key “address” and value {{street_addr_input.value}} from a text input.

What I would like to do is put a couple of inputs together for a full address so that they key is “address” and value is something like {{ String.concat({{street_addr_input.value}}+{{city_input.value}}) }} but the input doesn’t seem to take it. Do I have to use a transformer or is there another way I can do this inline?

Have you tried: {{street_addr_input.value + city_input.value}}

3 Likes

Sorry, new to this. Worked great. Thanks!

No sorries! We are all learning here :smiley:

2 Likes