You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Balthazar
8 years agoNew member | Level 2
Using new api v2 for getting property groups is asking for .tag field
I am trying to get the property groups metadata for a file in my dropbox. The problem is the include_property_groups parameter.
From the API example, I can't see any data with include_property_groups :
curl -X POST https://api.dropboxapi.com/2/files/get_metadata \ --header "Authorization: Bearer " \ --header "Content-Type: application/json" \ --data "{\"path\": \"/Homework/math\",\"include_media_info\": false,\"include_deleted\": false,\"include_has_explicit_shared_members\": false}"
But the data returned from the request has property_groups :
{ ".tag": "folder", "name": "math", "id": "id:a4ayc_80_OEAAAAAAAAAXz", "path_lower": "/homework/math", "path_display": "/Homework/math", "sharing_info": { "read_only": false, "parent_shared_folder_id": "84528192421", "traverse_only": false, "no_access": false }, "property_groups": [ { "template_id": "ptid:1a5n2i6d3OYEAAAAAAAAAYa", "fields": [ { "name": "Security Policy", "value": "Confidential" } ] } ] }
If am using include_property_groups in my API call, the response throws an error : "request body: include_property_groups: missing '.tag' key". I tried anything, for the '.tag' key, but I can't seem to get it work.
Can you help ?
Thank you.
The include_property_groups parameter on /2/files/get_metadata takes a TemplateFilterBase object, so specifying it would look like this:
curl -X POST https://api.dropboxapi.com/2/files/get_metadata \ --header "Authorization: Bearer ACCESS_TOKEN_HERE" \ --header "Content-Type: application/json" \ --data "{\"path\": \"/PATH_TO_FILE_HERE\", \"include_property_groups\": {\".tag\": \"filter_some\", \"filter_some\": [\"PROPERTY_TEMPLATE_ID_HERE\"]}}"
- Greg-DBDropbox Staff
The include_property_groups parameter on /2/files/get_metadata takes a TemplateFilterBase object, so specifying it would look like this:
curl -X POST https://api.dropboxapi.com/2/files/get_metadata \ --header "Authorization: Bearer ACCESS_TOKEN_HERE" \ --header "Content-Type: application/json" \ --data "{\"path\": \"/PATH_TO_FILE_HERE\", \"include_property_groups\": {\".tag\": \"filter_some\", \"filter_some\": [\"PROPERTY_TEMPLATE_ID_HERE\"]}}"
- BalthazarNew member | Level 2
Thank you, that worked !
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 38 minutes agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!