We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
SportCorp
5 years agoNew member | Level 2
api.dropboxapi.com/2/team_log/get_events returns an empty list
calling api.dropboxapi.com/2/team_log/get_events returns an empty list with "has_more": true
{
"events": [],
"cursor": "AABCp00-V60AxTHN5J_Brex8tf5o0w9lXW8zmPz8ZTqZ7wg-1ubg1Skj2s6hyg6VlRyj-iyxGkv5RoTCaPP_kx9VAvRAr5rKAaUSYUFe8529SC28VXIZKCcXb9Lhx9EGfi5Zjkt_pHr_YRzN7-mzpCj4UsA8Wx_HDJC2E2DVGuK2lJx0uYgbVcs98hRRbu4433OuHpjrz5LGJL9O912P5x3Bx6UOfvV8r-GQ6uFJHqOsFiCuuwAWIVsQmLyiOXyfqsO6963Gyro6EUO4q9zTLaafL0ndJflQuN5GS96A_5Dy9GqrGAotyHzXrhhGxWaXYw2ccSBU7dRskmpdDLpmJ_qHqwXL3RNkA_mqWWE9htye3g",
"has_more": true
}
The feature is enabled as api.dropboxapi.com/2/team/features/get_values returns the following as true:
{
"values": [
{
".tag": "has_team_file_events",
"has_team_file_events": {
".tag": "enabled",
"enabled": true
}
},
{
".tag": "has_team_shared_dropbox",
"has_team_shared_dropbox": {
".tag": "has_team_shared_dropbox",
"has_team_shared_dropbox": true
}
}
]
}
When you get 'has_more:true' back from /2/team_log/get_events, you need to call back to /2/team_log/get_events/continue using the returned 'cursor' (and so on). The exact page size for any single response from these endpoints is not guaranteed, so make sure you have that implemented so you can retrieve all of the results, which may take multiple calls.
If something isn't working though, e.g., if you paginate through all of the pages until you get 'has_more:false' but still haven't received the entries, please let me know so we can look into it.
- Greg-DBDropbox Staff
When you get 'has_more:true' back from /2/team_log/get_events, you need to call back to /2/team_log/get_events/continue using the returned 'cursor' (and so on). The exact page size for any single response from these endpoints is not guaranteed, so make sure you have that implemented so you can retrieve all of the results, which may take multiple calls.
If something isn't working though, e.g., if you paginate through all of the pages until you get 'has_more:false' but still haven't received the entries, please let me know so we can look into it.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 2 hours 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!