Hello,
I am new to Alteryx and I am trying to create a JSON output with this information:
jsonb_build_object(
'name', name,
'zip', zip,
'city', city,
'id', id,
'email', email,
'mobile', mobile,
) as data
Output as the below:
| {"name": "Bob", "zip": "60021", "city": "Seattle", "id": "334455", "email": "abc-at-gmail.com", "mobile": null} |
Any suggestions are appreciated!