make sending json as string #42299
Replies: 2 comments
-
|
The reason your data shows up with backslashes (like ") is called Double Stringification. Make.com is trying to be helpful by converting your parsed "Array" back into a string, but it is "escaping" the characters in the process. Use the toJSON() function Another Alternative is to Map the "JSON string" directly If this formula fix helps you get clean JSON data into Supabase, please consider marking this as the accepted answer so it can help other Make.com automators! |
Beta Was this translation helpful? Give feedback.
-
|
Detail step for toJson() FUnction In your Supabase "Create a Row" module, look at the checklist field. Instead of just dragging and dropping the checklist variable from the JSON Parser, you need to use a formula to force it into a clean JSON format. Do this in the mapping field: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
i am trying to send a list from an email through a json parse to a supabse create a row in make. the parse json pulls the information correctly. i then map the module in the supabase create a row but no matter what i try supabase changes the parsejson raw data to a string and send to supabase so everytime in supabase instead of being [data] i get "[data]"
Beta Was this translation helpful? Give feedback.
All reactions