I am trying to create team folder with Dropbox Business Standard plan in dropbox api explorer
curl -X POST https://api.dropboxapi.com/2/team/team_folder/create \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'\
--header 'Content-Type: application/json' \
--data '{"name":"test"}'
But it gives me following error
{
"{ "error_summary ": "invalid_account_type/endpoint/.",
"error": {
".tag": "invalid_account_type",
"invalid_account_type": {
".tag": "endpoint"
}
},
"user_message": {
"locale": "en",
"text": "You can’t create a team folder for this team"
}
}
How can I create team folder and where it will be visible in UI?