I need to upload file from my account to DROPPBOX team account.I am not able to do it.I am having ACCESS_TOKEN from it which API I need to call to upload file in TEAM account.
I am using following method:
var dbxTeam = new DropboxTeam({ accessToken: ACCESS_TOKEN });
But I could not able to find team user details in json.
I don't know how to use API listed in DROPBOX documentation in UI5.
https://www.dropbox.com/developers/documentation/http/teams
I refer above link.
But I could not able to understand URL STRUCTURE for getting team member list, /devices/list_member_devices.Where to pass it in combination of access_token?
I could not able to understand below code which is there in above URL also I could not understand URL Structure https://api.dropboxapi.com/2/team/devices/list_member_devices.
curl -X POST https://api.dropboxapi.com/2/team/devices/list_member_devices \ --header "Authorization: Bearer " \ --header "Content-Type: application/json" \ --data "{\"team_member_id\": \"dbmid:AAFdgehTzw7WlXhZJsbGCLePe8RvQGYDr-I\",\"include_web_sessions\": true,\"include_desktop_clients\": true,\"include_mobile_clients\": true}"
I am having ACCESS_TOKEN of my id ,uid and team id ,from it How I can have list of team members?
Thanks in advance.
I need to upload file from my account to DROPPBOX team account.I am not able to do it.I am having ACCESS_TOKEN from it which API I need to call to upload file in TEAM account.
I am using following method:
var dbxTeam = new DropboxTeam({ accessToken: ACCESS_TOKEN });
But I could not able to find team user details in json.
I don't know how to use API listed in DROPBOX documentation in UI5.
https://www.dropbox.com/developers/documentation/http/teams
I refer above link.
But I could not able to understand URL STRUCTURE for getting team member list, /devices/list_member_devices.Where to pass it in combination of access_token?
I could not able to understand below code which is there in above URL.
curl -X POST https://api.dropboxapi.com/2/team/devices/list_member_devices \ --header "Authorization: Bearer " \ --header "Content-Type: application/json" \ --data "{\"team_member_id\": \"dbmid:AAFdgehTzw7WlXhZJsbGCLePe8RvQGYDr-I\",\"include_web_sessions\": true,\"include_desktop_clients\": true,\"include_mobile_clients\": true}"
I am having ACCESS_TOKEN of my id ,uid and team id ,from it How I can have list of team members?
Thanks in advance.