If a folder has been shared with a member that doesn't have a Dropbox set up, is there a way to programmatically remove them? I'm currently get members of a shared folder as follows:
await dbxClient.Sharing.ListFolderMembersAsync(sharedFolderId, null, 1000);
I then go through each member and either change their permissions or remove them from the shared folder. This, however, only returns members and not invitees that have yet to set up a Dropbox. In theory, this person could set up a Dropbox down the road and then have access to a shared folder when they should no longer have access.