I am trying to send a JSON field using

I am trying to send a JSON field using Http Request in the workflow as below: The endpoint it getting like a reference for the object, not his content.
No description
No description
3 Replies
Pedro Magalhães
Pedro MagalhãesOP3mo ago
@bob Can you support me here?
Baptiste Devessier
Hi @Pedro Magalhães, I think the issue is that when you use the Additional info variable, it tries to inject it as a string. For now, I would try declaring the body of the request more explicitly:
{
"additional_info": {
"a": Additional Info.a,
"b": Additional Info.b
}
}
{
"additional_info": {
"a": Additional Info.a,
"b": Additional Info.b
}
}
Would it work for you?
Pedro Magalhães
Pedro MagalhãesOP3mo ago
Yep. It works

Did you find this page helpful?