Hi everyone!
I’ve released a new plugin to help with some JSON limitation in Bubble API Connector
Clean JSON
4 Actions:
A) Clean JSON. Will remove null and empty “” key
B) Remove Empty key value JSON. Will only remove empty “” value and key pair
C) Replace Empty by null JSON. Will replace empty “” value by null
D) Replace “null” by null JSON
Example for Clean JSON Action:
Example
{ "id": "12345", "date":"", "line": [{ "id": "line123","data":null }]}
Result:
{"id":"12345","line":[{"id":"line123"}]}