Hi, I am trying to fetch the information populated in a form through workflow automation by send web request option.
following this URL that I am using :
the response is not formatted and leads to failure. I am seeing all string quotations are missing. I have checked content-type has been set to "application/json" in the header.
to be sure of it, I stored the response as a variable and store that variable as a comment and still all string quotations are missing.
{label=Agency Roles, fieldKey=AgencyRole_1, answer=Role 1, choice=1},
{label=Agency Roles, fieldKey=AgencyRole_1, answer=Role 1, choice=1}
while the same i.e string quotations is present when fetching the same form through standalone python program
[ { "label": "Agency Roles", "fieldKey": "AgencyRole_1", "answer": "Role 1", "choice": "1" }, { "label": "Agency Roles", "fieldKey": "AgencyRole_2", "answer": "Role 2", "choice": "2" }]
I have to transfer complete output of the form to another system for further processing.