Hi,
I'm trying to auto-create shared links for folders created via the API. The issue is as soon as I change the "access" to anything but "viewer", I get an error.
Sample request:
POST https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings:
{
"path": "/test",
"settings": {
"audience": "public",
"access": "editor",
"allow_download": true
}
}
Returns a 409:
{
"error_summary": "settings_error/invalid_settings/..",
"error": {
".tag": "settings_error",
"settings_error": {
".tag": "invalid_settings"
}
}
}
The payload conforms to the docs, so can't understand what the issue is.
Appreciate any support on this.