Passing an empty string to api connector

For instance, to get a list of all folders/files in an account, dropbox requires you to pass an empty string to the endpoint. If using code, this would be handled by using “” . However, the api connector returns an error if you try to pass an empty value.

Has anyone been able to bypass this?

Figured it out. You have to pass the parameters in the body. However, you might still run into some issues. so instead of passing the value inside the quotes like “” , pass the value along with the quotes such as <“key”>

I tried this on my API but that doesn’t seem to work