Failed to import curl command

I get an Invalid format for curl when I try to import the following curl command.
This works fine from the command line.

curl -i -X POST -u demo:demo --data-binary “select * from channels” -H “Content-Type: application/sql” -k http://localhost:7070/foo/sql

Hey @sbdesai199,

Welcome to the community :wave:

It doesn’t seem to like the extra empty arguments that are within the command, I removed the -i and -k flags and this was then imported successfully into the application.

curl -X POST -u demo:demo --data-binary "select * from channels" -H "Content-Type: application/sql" http://localhost:7070/foo/sql