I have a folder ID.
I've checked API Dropbox there is a `files/get_metadata` endpoint https://www.dropbox.com/developers/documentation/http/documentation#files-get_metadata
{
"path": "id:a4ayc_80_OEAAAAAAAAAYa",
"include_media_info": false,
"include_deleted": false,
"include_has_explicit_shared_members": false
}
This endpoint is taking path argument which could be and path, id, and rev. In my case ID is fitting perfectly, because I know ID of the created folder and storing it in DB.
But I'm getting `path not found` error while trying to send ID. How can I get folder metadata using folder ID?