eastern-cyan
eastern-cyan2y ago

Nood doubt about add "" to a variables

Hi team, I am trying to send some variables inside the RAW body of a POST API call. Something like this: { "Colectivo": "COL0008", "Email" : {Email}, "Nombre" : {Nombre}, "Telefono": {Telefono} } But I need to include a " before and after the current variable contents. Jus transform Juan to "Juan". Anybody knows how to do it? Thanks in advance!
1 Reply
W. Williams (SFT)
{
"Colectivo": "COL0008",
"Email" : "{Email}",
"Nombre" : "{Nombre}",
"Telefono": "{Telefono}"
}
{
"Colectivo": "COL0008",
"Email" : "{Email}",
"Nombre" : "{Nombre}",
"Telefono": "{Telefono}"
}

Did you find this page helpful?