Hey guys! First time trying to create C3 plugin and having issues with JSON input in action parameters. When I try to enter this JSON in an action parameter field:
[{"key":"username","value":"JohnDoe"},{"key":"email","value":"test@example.com"}]
I get syntax errors at certain characters like:
The opening bracket [
The @ symbol in email addresses
Commas , between objects
Is there a proper way to handle JSON input in plugin action parameters? Or do I need to use a different approach for complex data input? My plugin accepts a string parameter that should contain a JSON array, but Construct 3's parameter system seems to have issues with these special characters. any advice on best practices for handling structured data input in plugin actions? tried escaped string format too but same. Maybe I'll just pass it as variable? :/