<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error when adding team members to an initally created team folder via http endpoint in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624031#M28840</link>
    <description>&lt;P&gt;Hi Sdrawko, hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;@Sdrawko:&lt;/STRONG&gt;&lt;BR /&gt;If you read my post carefully, I never meant that you're Russian &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;I just learned the cyrillic alphabet as side effect when learning Russian at school.&lt;BR /&gt;And, I know that some baltic countries (and maybe others) also use the cyrillic alphabet.&amp;nbsp;But even in such country you have a chance to communicate using Russian.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Anyway I've to sincerely apologize for the confusion.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Back to business:&lt;BR /&gt;I'm using HTTP endpoints only (using REST calls) so no "real" SDK will apply.&lt;BR /&gt;The programming language I use is called "ABAP Objects", which is SAP only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;Endpoint &lt;A href="https://api.dropboxapi.com/2/sharing/add_folder_member" target="_blank"&gt;https://api.dropboxapi.com/2/sharing/add_folder_member&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In order to add a user to that folder I have to use the "Dropbox-API-Select-Admin: &amp;lt;TEAM_MEMBER_ID&amp;gt;" header parameter as stated here:&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member&lt;/A&gt;&lt;/P&gt;&lt;P&gt;curl example using the admin authorization is here:&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/reference/auth-types#admin-authentication" target="_blank"&gt;https://www.dropbox.com/developers/reference/auth-types#admin-authentication&lt;/A&gt;&lt;/P&gt;&lt;P&gt;curl -X POST "&lt;A href="https://api.dropboxapi.com/2/users/get_current_account" target="_blank"&gt;https://api.dropboxapi.com/2/users/get_current_account&lt;/A&gt;" \&lt;BR /&gt;--header "Authorization: Bearer &amp;lt;OAUTH2_ACCESS_TOKEN&amp;gt;" \&lt;BR /&gt;--header "Dropbox-API-Select-Admin: &amp;lt;TEAM_MEMBER_ID&amp;gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm performing the following steps:&lt;BR /&gt;- create REST API class instance&lt;BR /&gt;- open http connection&lt;BR /&gt;- fetch new oauth2 token using my secret refresh token (refresh token was generated when authorizing the app the first time) and set header field&lt;BR /&gt;-&amp;gt;http header field = "Authorization: Bearer &amp;lt;oauth2 token&amp;gt;"&lt;BR /&gt;- create header field for admin authorization&lt;BR /&gt;-&amp;gt;http header field = "Dropbox-API-Select-Admin: dbmid&amp;lt;my team member id&amp;gt;"&lt;BR /&gt;- create "request" class instance&lt;BR /&gt;- set "Content-Type" to "application/json" via request class (this actually generates the corresponding "Content-Type" header parameter)&lt;BR /&gt;- build json string with info about new user, team folder etc.&lt;BR /&gt;- set json as request data&lt;BR /&gt;- make POST request&lt;BR /&gt;- create "response" class instance&lt;BR /&gt;- get server response &amp;amp; status&lt;BR /&gt;- evaluate response &amp;amp; status&lt;BR /&gt;- close http connection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All these steps work flawlessly making REST calls to other endpoints (without admin auth.).&lt;BR /&gt;Unfortunately there seems to be no useful example in the documentation making use of the "Dropbox-API-Select-Admin" parameter.&lt;BR /&gt;At least I wasn't able to find one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, please understand: I cannot see any reason why I'm getting this popup, since I DO send a Bearer token.&lt;BR /&gt;Here's the ABAP-Objects code with some comments:&lt;BR /&gt;...&lt;BR /&gt;IF lo_rest_client IS BOUND. "check if class instance has been created&lt;BR /&gt;"lo_auth is an instance of a class which handles oauth2 tokens&lt;BR /&gt;lo_auth-&amp;gt;get_bearer_auth_name_value( IMPORTING es_bearer_auth = ls_auth_bearer ). "fetch new oauth2 token (or use last token if not expired)&lt;BR /&gt;IF ls_auth_bearer IS NOT INITIAL.&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = ls_auth_bearer-name "Authorization&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = ls_auth_bearer-value ). "Bearer &amp;lt;oauth2 token&amp;gt;&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = /karon/cl_dropbox_co=&amp;gt;mc_dbx_par_api_select_admin "Dropbox-API-Select-Admin&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = lv_dbx_team_admin ). "dbmid:&amp;lt;team member id&amp;gt;&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = /karon/cl_dropbox_co=&amp;gt;mc_url_par_request_uri "~request_uri&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = `/2/sharing/share_folder` ).&lt;BR /&gt;lo_request_entity = lo_rest_client-&amp;gt;create_request_entity( ).&lt;BR /&gt;lo_request_entity-&amp;gt;set_content_type( iv_media_type = /karon/cl_dropbox_co=&amp;gt;mc_content_json ). "application/json&lt;BR /&gt;lo_request_entity-&amp;gt;set_string_data( iv_data = lv_json ). "json string with parameters&lt;BR /&gt;lo_rest_client-&amp;gt;post( io_entity = lo_request_entity ).&lt;BR /&gt;...&lt;/P&gt;&lt;P&gt;The only reason why I'm sending a Basic token is as response of the authorization popup I'm constantly getting.&lt;BR /&gt;IMHO the question is not why I'm getting an error (which is pretty much clear), but why this popup appears.&lt;/P&gt;&lt;P&gt;REST calls to endpoints which require the&amp;nbsp;"Dropbox-API-Select-User" parameter also work without a hitch.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Sep 2022 14:09:49 GMT</pubDate>
    <dc:creator>1575475</dc:creator>
    <dc:date>2022-09-21T14:09:49Z</dc:date>
    <item>
      <title>Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623658#M28808</link>
      <description>&lt;P&gt;I'm making REST calls to the DBX HTTP endpoint from within SAP. My app has full dbx access and all possible rights.&lt;BR /&gt;Creating a team folder works flawlessly but when trying to add members to that folder via the /sharing/add_folder_member API I get a strange error:&lt;/P&gt;
&lt;P&gt;Error in call to API function "sharing/add_folder_member": Invalid authorization value in HTTP header "Authorization": "Basic &amp;lt;some base64 string&amp;gt;"&lt;BR /&gt;Expecting "Bearer &amp;lt;oauth2-access-token&amp;gt;"&lt;/P&gt;
&lt;P&gt;I do provide an bearer oauth2 access token for app authentication (app ) and my user id (as admin) for the "Dropbox-API-Select-Admin" header parameter.&lt;BR /&gt;Also a list of users to be added to the team folder.&lt;BR /&gt;As soon as I make the REST call something unexpected happens: A popup window appears and I have to enter my dbx credentials.&lt;BR /&gt;After that above error occurs.&lt;/P&gt;
&lt;P&gt;Things I don't get at all:&lt;BR /&gt;- why I have to authenticate myself as admin since an app access token is provided and the app has full dbx access and all possible rights?&lt;BR /&gt;- why the bearer token is ignored?&lt;/P&gt;
&lt;P&gt;How can I fix this? Please advise.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Jan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S.: I just tried to access the endpoint using curl&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;curl -X POST &lt;A href="https://api.dropboxapi.com/2/sharing/add_folder_member" target="_blank" rel="noopener"&gt;https://api.dropboxapi.com/2/sharing/add_folder_member&lt;/A&gt; \&lt;BR /&gt;--header 'Authorization: Bearer &amp;lt;created access token using refresh token&amp;gt;' \&lt;BR /&gt;--header 'Dropbox-API-Select-Admin: dbid:&amp;lt;my team member&amp;nbsp; id&amp;gt;' \&lt;BR /&gt;--header 'Content-Type: application/json' \&lt;BR /&gt;--data '{"shared_folder_id":"&amp;lt;team folder id&amp;gt;","members":[{"member":{".tag":"dropbox_id","dropbox_id":"dbid:&amp;lt;my user id&amp;gt;"},"access_level":{".tag":"editor"}}],"quiet":false,"custom_message":"Test"}'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and got "missing scope ..." and "required scope sharing/write"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 22:14:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623658#M28808</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-21T22:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623722#M28810</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;... I get a strange error:&lt;/P&gt;&lt;P&gt;Error in call to API function "sharing/add_folder_member": Invalid authorization value in HTTP header "Authorization": "Basic &amp;lt;some base64 string&amp;gt;"&lt;BR /&gt;Expecting "Bearer &amp;lt;oauth2-access-token&amp;gt;"&lt;/P&gt;&lt;P&gt;I do provide an bearer oauth2 access token for app authentication (app ) and my user id (as admin) for the "Dropbox-API-Select-Admin" header parameter.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;As seems, you thought "Bearer" authentication got provided, but you have "Basic" authentication provided actually (something incompatible). Review your algorithm. There is a mistake (most probably typing inaccuracy).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;curl -X POST &lt;A href="https://api.dropboxapi.com/2/sharing/add_folder_member" target="_blank" rel="noopener"&gt;https://api.dropboxapi.com/2/sharing/add_folder_member&lt;/A&gt; \&lt;BR /&gt;--header 'Authorization: Bearer &amp;lt;created access token using refresh token&amp;gt;' \&lt;BR /&gt;--header 'Dropbox-API-Select-Admin: dbid:&amp;lt;my team member&amp;nbsp; id&amp;gt;' \&lt;BR /&gt;--header 'Content-Type: application/json' \&lt;BR /&gt;--data '{"shared_folder_id":"&amp;lt;team folder id&amp;gt;","members":[{"member":{".tag":"dropbox_id","dropbox_id":"dbid:&amp;lt;my user id&amp;gt;"},"access_level":{".tag":"editor"}}],"quiet":false,"custom_message":"Test"}'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and got "missing scope ..." and "required scope sharing/write"&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This means, either you miss "sharing/write" for your application or you have limited scopes on application authorization or on access token receiving. Make sure you have "sharing/write" everywhere (miss even on one place and the scope gets inactive) or remove limiting of scopes on authorization and on token receiving (if applicable) - in such a case token scopes set will match exactly on what's selected, for the application, in application console. Take in mind too that a change in scopes is NOT retroactive - you have to re-authenticate so the change can take effect.&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 13:22:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623722#M28810</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-20T13:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623732#M28812</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790" target="_self"&gt;&lt;SPAN class=""&gt;Здравко&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;thank you for your response.&lt;/P&gt;&lt;P&gt;The app I use has all rights possible (just for development, will revoke unneeded ones later on).&lt;/P&gt;&lt;P&gt;But I still don't get the point why I'm getting a popup to authorize to DBX.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-20 153507.jpg" style="width: 800px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31778iA6437B823834BA74/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-09-20 153507.jpg" alt="Screenshot 2022-09-20 153507.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I do have provided a new Bearer Token to authenticate my app, so why do I have to authenticate myself as Admin, too? Is this normal?&lt;/P&gt;&lt;P&gt;REST calls should be performed pretty much in the background without user interaction.&lt;/P&gt;&lt;P&gt;Since the authentication as Admin (user) is always of type "Basic" (username:password encoded in Base64) the DBX API might get this wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any futher suggestions? Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd rather post my code here, but doubt anybody can interpret ABAP (SAP programming language) &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 13:46:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623732#M28812</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-20T13:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623967#M28835</link>
      <description>&lt;P&gt;Sdrastwuj Sdrawko,&lt;/P&gt;&lt;P&gt;I used to learn Russian at school, just about 50 years ago, but almost forgot everything &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;At least I'm still able to "decipher" cyrillic letters.&lt;/P&gt;&lt;P&gt;Thank you for your response. I already answered yesterday but somehow this post has vanished.&lt;/P&gt;&lt;P&gt;Ok, let me pls start over:&lt;/P&gt;&lt;P&gt;The DBX app I created has all rights on the Dropbox, I'll revoke some of them after finishing development.&lt;/P&gt;&lt;P&gt;My biggest problem actually is that the following dialog pops up everytime I make a call using the "Dropbox-API-Select-Admin" header parameter.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Popup.jpg" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31791iBA0B5D8502A5280B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Popup.jpg" alt="Popup.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(Translation: Please enter your user name and password)&lt;/P&gt;&lt;P&gt;This obviously is where I've to authorize myself as DBX/Team Admin. Unfortunately I wasn't able to find anything in the documentation that this particular authorization is needed at all, since I do provide a valid app "Bearer" token. So my question is: Is this the normal behavior?&amp;nbsp;&lt;/P&gt;&lt;P&gt;This applies to all endpoints where I try to tamper with one of the team folders (like adding members).&lt;/P&gt;&lt;P&gt;IMHO this happens:&lt;/P&gt;&lt;P&gt;Authorization as a user is always done using "Basic" authorization method with "username:password" as Base64 string.&lt;/P&gt;&lt;P&gt;So, this might be the problem. But again, why above popup appears? IMHO this is wrong!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions? Thank you &amp;amp; Doswidania &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 10:39:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623967#M28835</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-21T10:39:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623997#M28836</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Sdrastwuj Sdrawko,&lt;/P&gt;&lt;P&gt;I used to learn Russian at school, just about 50 years ago, but almost forgot everything &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;At least I'm still able to "decipher" cyrillic letters.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@D88F213CAFB196B6AB70612B08AD9D31/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt; Здравей Йан,&lt;/P&gt;&lt;P&gt;I have no idea where you decide from that I'm Russian. If the only reason are Cyrillic letters, what alphabet is in use in US for instance? Is it American or English alphabet? The same in Australia, some parts of Canada, etc. By the way, Cyrillic is so much Russian as English alphabet is US (i.e. it's just used there &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;). Go to the nearest big library (if you like "offline" confirmation) and ask staff there to direct you to historical documents about Cyrillic or just search online.&amp;nbsp; &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt; Did you find out where Cyrillic originates from? In addition, why &lt;A title="ECB Denominations" href="https://www.ecb.europa.eu/euro/banknotes/denominations/html/index.en.html#es2-200" target="_blank" rel="noopener"&gt;€ banknotes&lt;/A&gt; include Cyrillic name? Is this in favor of Russian? &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@D88F213CAFB196B6AB70612B08AD9D31/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt; Maybe not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the actual question, You didn't still provided how actually you make calls to API end points. Seems like the software, you are using, gets confuse somehow and it does definitely not include official supported Dropbox SDK. Whatever is this software, it brings up the message you posted above - there is no way API itself to do the same. Read more carefully your tools documentation, how such calls can be performed in particular context. Most probably you have skipped something required by the platform you are working on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;This obviously is where I've to authorize myself as DBX/Team Admin. Unfortunately I wasn't able to find anything in the documentation that this particular authorization is needed at all, since I do provide a valid app "Bearer" token. So my question is: Is this the normal behavior?&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is definitely not a normal behavior. You are looking on wrong documentation! As I mentioned before, take a look on you tools documentation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Authorization as a user is always done using "Basic" authorization method with "username:password" as Base64 string.&lt;/P&gt;&lt;P&gt;So, this might be the problem. But again, why above popup appears? IMHO this is wrong!&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is definitely problem! Seems your environment changes it. Read your environment documentation (or ask supplier for support) why that happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About the "rights":&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;The DBX app I created has all rights on the Dropbox, I'll revoke some of them after finishing development.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Did you confirmed your scopes (rights) on authorization? Alternatively you can skip this part which means "accept everything". If you pointed something and particular scope is not there, this means the same scope becomes inactive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Надявам се, че горното дава насоки. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 12:44:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/623997#M28836</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-21T12:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624008#M28839</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt; To confirm, I concur with that Здравко has helpfully shared here. &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_blank"&gt;The sharing/add_folder_member endpoint&lt;/A&gt; requires that an access token is sent as a "Bearer" token in the "Authorization" header, but it looks like your app is prompting for and sending a username and password as "Basic" authorization instead, which is incorrect. I can't offer support for your software/platform itself, so you'll need to troubleshoot it to see why it is attempting "Basic" authorization instead of "Bearer" authorization.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 13:21:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624008#M28839</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-21T13:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624031#M28840</link>
      <description>&lt;P&gt;Hi Sdrawko, hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;@Sdrawko:&lt;/STRONG&gt;&lt;BR /&gt;If you read my post carefully, I never meant that you're Russian &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&amp;nbsp;I just learned the cyrillic alphabet as side effect when learning Russian at school.&lt;BR /&gt;And, I know that some baltic countries (and maybe others) also use the cyrillic alphabet.&amp;nbsp;But even in such country you have a chance to communicate using Russian.&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Anyway I've to sincerely apologize for the confusion.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Back to business:&lt;BR /&gt;I'm using HTTP endpoints only (using REST calls) so no "real" SDK will apply.&lt;BR /&gt;The programming language I use is called "ABAP Objects", which is SAP only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;Endpoint &lt;A href="https://api.dropboxapi.com/2/sharing/add_folder_member" target="_blank"&gt;https://api.dropboxapi.com/2/sharing/add_folder_member&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In order to add a user to that folder I have to use the "Dropbox-API-Select-Admin: &amp;lt;TEAM_MEMBER_ID&amp;gt;" header parameter as stated here:&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member&lt;/A&gt;&lt;/P&gt;&lt;P&gt;curl example using the admin authorization is here:&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/reference/auth-types#admin-authentication" target="_blank"&gt;https://www.dropbox.com/developers/reference/auth-types#admin-authentication&lt;/A&gt;&lt;/P&gt;&lt;P&gt;curl -X POST "&lt;A href="https://api.dropboxapi.com/2/users/get_current_account" target="_blank"&gt;https://api.dropboxapi.com/2/users/get_current_account&lt;/A&gt;" \&lt;BR /&gt;--header "Authorization: Bearer &amp;lt;OAUTH2_ACCESS_TOKEN&amp;gt;" \&lt;BR /&gt;--header "Dropbox-API-Select-Admin: &amp;lt;TEAM_MEMBER_ID&amp;gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm performing the following steps:&lt;BR /&gt;- create REST API class instance&lt;BR /&gt;- open http connection&lt;BR /&gt;- fetch new oauth2 token using my secret refresh token (refresh token was generated when authorizing the app the first time) and set header field&lt;BR /&gt;-&amp;gt;http header field = "Authorization: Bearer &amp;lt;oauth2 token&amp;gt;"&lt;BR /&gt;- create header field for admin authorization&lt;BR /&gt;-&amp;gt;http header field = "Dropbox-API-Select-Admin: dbmid&amp;lt;my team member id&amp;gt;"&lt;BR /&gt;- create "request" class instance&lt;BR /&gt;- set "Content-Type" to "application/json" via request class (this actually generates the corresponding "Content-Type" header parameter)&lt;BR /&gt;- build json string with info about new user, team folder etc.&lt;BR /&gt;- set json as request data&lt;BR /&gt;- make POST request&lt;BR /&gt;- create "response" class instance&lt;BR /&gt;- get server response &amp;amp; status&lt;BR /&gt;- evaluate response &amp;amp; status&lt;BR /&gt;- close http connection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All these steps work flawlessly making REST calls to other endpoints (without admin auth.).&lt;BR /&gt;Unfortunately there seems to be no useful example in the documentation making use of the "Dropbox-API-Select-Admin" parameter.&lt;BR /&gt;At least I wasn't able to find one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, please understand: I cannot see any reason why I'm getting this popup, since I DO send a Bearer token.&lt;BR /&gt;Here's the ABAP-Objects code with some comments:&lt;BR /&gt;...&lt;BR /&gt;IF lo_rest_client IS BOUND. "check if class instance has been created&lt;BR /&gt;"lo_auth is an instance of a class which handles oauth2 tokens&lt;BR /&gt;lo_auth-&amp;gt;get_bearer_auth_name_value( IMPORTING es_bearer_auth = ls_auth_bearer ). "fetch new oauth2 token (or use last token if not expired)&lt;BR /&gt;IF ls_auth_bearer IS NOT INITIAL.&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = ls_auth_bearer-name "Authorization&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = ls_auth_bearer-value ). "Bearer &amp;lt;oauth2 token&amp;gt;&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = /karon/cl_dropbox_co=&amp;gt;mc_dbx_par_api_select_admin "Dropbox-API-Select-Admin&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = lv_dbx_team_admin ). "dbmid:&amp;lt;team member id&amp;gt;&lt;BR /&gt;lo_rest_client-&amp;gt;set_request_header( iv_name = /karon/cl_dropbox_co=&amp;gt;mc_url_par_request_uri "~request_uri&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;iv_value = `/2/sharing/share_folder` ).&lt;BR /&gt;lo_request_entity = lo_rest_client-&amp;gt;create_request_entity( ).&lt;BR /&gt;lo_request_entity-&amp;gt;set_content_type( iv_media_type = /karon/cl_dropbox_co=&amp;gt;mc_content_json ). "application/json&lt;BR /&gt;lo_request_entity-&amp;gt;set_string_data( iv_data = lv_json ). "json string with parameters&lt;BR /&gt;lo_rest_client-&amp;gt;post( io_entity = lo_request_entity ).&lt;BR /&gt;...&lt;/P&gt;&lt;P&gt;The only reason why I'm sending a Basic token is as response of the authorization popup I'm constantly getting.&lt;BR /&gt;IMHO the question is not why I'm getting an error (which is pretty much clear), but why this popup appears.&lt;/P&gt;&lt;P&gt;REST calls to endpoints which require the&amp;nbsp;"Dropbox-API-Select-User" parameter also work without a hitch.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 14:09:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624031#M28840</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-21T14:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624042#M28841</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;BR /&gt;IMHO the question is not why I'm getting an error (which is pretty much clear), but why this popup appears.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Exactly, that's why you have to redirect your question to platform provider or read the documentation.&lt;/P&gt;&lt;P&gt;As a good troubleshooting step if possible, dump and evaluate raw communication between your client application and server. There might be a useful communication details you may ignored. You can compare the dump to expected format in &lt;A title="Dropbox API Explorer • add_folder_member" href="https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_add_folder_member" target="_blank" rel="noopener"&gt;API explorer&lt;/A&gt; (push "Show Code" and select "HTTP request"). You have to add "Dropbox-API-Select-Admin" header as a extra header (through "Show Headers"). I believe such info can be useful for your platform provider too, to figure out what's wrong with your HTTP request.&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 14:39:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624042#M28841</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-21T14:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624050#M28842</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt; It looks like you have the right idea. And for reference, here's a curl example of calling /2/sharing/share_folder with the 'Dropbox-Api-Select-Admin' header specified: (built using &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#sharing_share_folder" target="_blank"&gt;the API v2 Explorer&lt;/A&gt;)&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;curl -X POST https://api.dropboxapi.com/2/sharing/share_folder \
  --header 'Authorization: Bearer &amp;lt;ACCESS_TOKEN&amp;gt;' \
  --header 'Content-Type: application/json' \
  --header 'Dropbox-Api-Select-Admin: &amp;lt;TEAM_MEMBER_ID&amp;gt;' \
  --data '{"path":"&amp;lt;PATH&amp;gt;"}'&lt;/LI-CODE&gt;
&lt;P&gt;That works for me, when I plug in valid values.&lt;/P&gt;
&lt;P&gt;The popup is presented by your platform though, so I can't offer insight on why that is being shown. As Здравко suggested, you'll want to enable more verbose output if possible to see what exactly the code is/isn't setting properly, and refer to your platform's support/documentation for information on controlling that.&lt;/P&gt;
&lt;P&gt;If the issue is only occurring when you attempt to set the "Dropbox-API-Select-Admin" header, you may also want to try debugging that in particular, e.g., make sure that the header name and value are formed properly and don't contain any stray characters/whitespace, etc. Perhaps something like that is malforming the header values you're attempting to set and then causing your platform to default to prompting for basic credentials, or something to that effect.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 14:57:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624050#M28842</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-21T14:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624976#M28913</link>
      <description>&lt;P&gt;Hi Greg, hi Sdrawko,&lt;/P&gt;&lt;P&gt;many thanks for your most valuable help. Indeed, the source of the popup was our SAP system and I was able to rectify the problem.&lt;/P&gt;&lt;P&gt;So, please excuse my ignorance by thinking that had been a DBX issue &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;But - as the API call seems to work in principle - I'm getting another error:&lt;/P&gt;&lt;P&gt;{"error_summary": "no_permission/&lt;BR /&gt;", "error": {"&lt;BR /&gt;tag": "no_permission"}, "user_message": {"locale": "de", "text": "Sie sind nicht berechtigt, diese Aktion durchzuf\u00fchren&lt;BR /&gt;"}}&lt;/P&gt;&lt;P&gt;Translation:&amp;nbsp;Sie sind nicht berechtigt, diese Aktion durchzuf\u00fchren -&amp;gt; You're not authorized to perform this action&lt;/P&gt;&lt;P&gt;I've no clue why I'm getting this error. I'm admin and also have reauthorized my app after updating the app permissions. (BTW this wasn't mentioned in the documention, but I've found a thread in this forum regarding that issue.)&lt;/P&gt;&lt;P&gt;Also, since I've created this folder via REST call "/2/team/team_folder/create"&lt;/P&gt;&lt;P&gt;I should be owner of the folder and have all the rights. And, again, my app has all permission checkboxes ticked.&lt;/P&gt;&lt;P&gt;How should I proceed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you and best regards,&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 07:06:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/624976#M28913</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-26T07:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625047#M28914</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The action, you are trying, seems not granted to you (your access token) for some reason. The translation "berechtigt"-&amp;gt;"authorized" is not fairly correct. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@D88F213CAFB196B6AB70612B08AD9D31/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt; Once you get receiving this error message you application seems completely "authorized", otherwise you would not be able get to here. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;Possible reasons can be non confirmed scope on authorization and as a result particular scope stay inactive, in spite it has been selected, or you are doing something, that expect admin access, but you skipped represent yourself as admin (or specific team member).&lt;/P&gt;&lt;P&gt;Post exact request that results in such error, at least (with masked access token). May be useful to gets clear if you have some scopes entry in your authorization request and if so, how it looks like.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 13:32:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625047#M28914</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-26T13:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625099#M28915</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt; As Здравко said, it would be helpful to see the actual request to troubleshoot this further. From your description though, are you trying to call /2/sharing/share_folder on the team folder itself, which you created using /2/team/team_folder/create? You don't need to "share" a team folder, since it is already "shared". (Team folders are essentially a type of shared folder.) You can use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-add_folder_member" target="_blank"&gt;/2/sharing/add_folder_member&lt;/A&gt; to add members to it.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 15:48:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625099#M28915</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-26T15:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625259#M28916</link>
      <description>&lt;P&gt;Hi Greg, hi Sdrawko,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you again for your input. In the meantime I've created a Postman script which also fails. Here're the details:&lt;/P&gt;&lt;P&gt;URL:&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://api.dropboxapi.com/2/sharing/add_folder_member" target="_blank" rel="noopener"&gt;https://api.dropboxapi.com/2/sharing/add_folder_member&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Header parameters&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-27 091901.jpg" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31948i801507FEDEB64809/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-09-27 091901.jpg" alt="Screenshot 2022-09-27 091901.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The app token has been fetched a couple of minutes before and I've double checked my team member id. Since this id is used in various other calls it has to be ok.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;JSON Body&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;"custom_message"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"Test"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"members"&lt;/SPAN&gt;&lt;SPAN&gt;:[{&lt;/SPAN&gt;&lt;SPAN&gt;"access_level"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"editor"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"member"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"email"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"email"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"jan.buchholz@karon.de"&lt;/SPAN&gt;&lt;SPAN&gt;}}],&lt;/SPAN&gt;&lt;SPAN&gt;"quiet"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"shared_folder_id"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;"3032413665"&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-27 094056.jpg" style="width: 800px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31951iDB62A4F4C7EB18C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-09-27 094056.jpg" alt="Screenshot 2022-09-27 094056.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV&gt;(Output of list team folders, just to check that the folder id is correct)&lt;/DIV&gt;&lt;DIV&gt;What I don't understand here is that the "team shared" flag is set to false. In ABAP space=false and "X"=true.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Response with status 409 (conflict)&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error_summary"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"no_permission/.."&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"error"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"no_permission"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"user_message"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"locale"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"de"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"text"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Sie&amp;nbsp;sind&amp;nbsp;nicht&amp;nbsp;berechtigt,&amp;nbsp;diese&amp;nbsp;Aktion&amp;nbsp;durchzuführen."&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;App permission&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-27 092717.jpg" style="width: 400px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31949iE5DFFDBF762C1286/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-09-27 092717.jpg" alt="Screenshot 2022-09-27 092717.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;After rectifying the ominous popup issue, I think that the API I've created is in a "mature state" and doesn't contain any more errors.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any other calls (list folder, create folder, upload file, download file, delete file, get_metadata, list team members, list team namespaces, list team events, etc.) work flawlessly.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Now, as even the Postman script fails, IMHO the problem must be somewhere else. But, I'm running out of clues &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@B0F70D28791EB05FA3EA0C3BDDF08EE3/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;BTW, since I'm already member of the team folder, I'd expect some kind of error message, but not permission related at all.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Jan&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 07:54:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625259#M28916</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-27T07:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625309#M28918</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;DIV&gt;&lt;DIV&gt;...&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-09-27 094056.jpg" style="width: 800px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/31951iDB62A4F4C7EB18C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2022-09-27 094056.jpg" alt="Screenshot 2022-09-27 094056.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV&gt;(Output of list team folders, just to check that the folder id is correct)&lt;/DIV&gt;&lt;DIV&gt;What I don't understand here is that the "team shared" flag is set to false. In ABAP space=false and "X"=true.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;There is not exactly "IS_TEAM_SHARED", so most probably your are referring to "is_team_shared_dropbox" (which means is this a team root or not &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;). In all cases it's a team folder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are different reasons (wide spread of such) that can lead to wrong result. Let's do one more step to clarifying. Execute something like following:&lt;/P&gt;&lt;PRE&gt;curl -X POST https://api.dropboxapi.com/2/sharing/get_folder_metadata \
  --header 'Authorization: Bearer sl.BQAwolS9uZkZOnfZtpVoQIbNSX...' \&lt;BR /&gt;  --header 'Dropbox-Api-Select-Admin: dbmid:AACAstOvwj3lJYBziCcpdksycjMM-...' \
  --header 'Content-Type: application/json' \
  --data '{"shared_folder_id":"3032413665","actions":[{".tag":"invite_editor"},{".tag":"invite_viewer"}]}'&lt;/PRE&gt;&lt;P&gt;...or represent the same request as you like (is easier to you). Can you post the result?&amp;nbsp;🧐 There can be some clue.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 12:49:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625309#M28918</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-27T12:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625314#M28919</link>
      <description>&lt;P&gt;Hi Sdrawko,&lt;/P&gt;&lt;P&gt;thank you for your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding the "IS_TEAM_SHARED" field: What you see is the SAP internal field, it is mapped correctly to the original metadata field.&lt;/P&gt;&lt;P&gt;I internally used some shorter name to spare horizontal space &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran your script with Postman and got the following result:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"access_type"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"owner"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"is_inside_team_folder"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;false&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"is_team_folder"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"owner_team"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"id"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"dbtid:AABm0erI_vc6S9THU9dZ32uHg68XlhP1TNM"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Karon&amp;nbsp;Beratungsgesellschaft&amp;nbsp;mbH&amp;nbsp;IUL"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"name"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"KARON_TEAM_ON_PRD_TEST_001"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"permissions"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;[&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"action"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"invite_editor"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"allow"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"action"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"invite_viewer"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"allow"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"member_policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"anyone"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"resolved_member_policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"anyone"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"acl_update_policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"editors"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"shared_link_policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"anyone"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"viewer_info_policy"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"enabled"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"preview_url"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;A href="https://www.dropbox.com/scl/fo/q6cjkqf1wgzzl8xxnork9/h?dl=0" target="_blank" rel="noopener"&gt;https://www.dropbox.com/scl/fo/q6cjkqf1wgzzl8xxnork9/h?dl=0&lt;/A&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"shared_folder_id"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"3032413665"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"time_invited"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"2022-09-20T10:57:59Z"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"access_inheritance"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;".tag"&lt;/SPAN&gt;&lt;SPAN&gt;:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"inherit"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Best regards,&lt;/DIV&gt;&lt;DIV&gt;Jan&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Sep 2022 13:14:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625314#M28919</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-27T13:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625323#M28921</link>
      <description>&lt;P&gt;Wow... that's going be something really strange. According to your last post you should be able add (invite) a member. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@9AD39CA637682E9616FBE31CDAF1B6C4/emoticons/1f914.png" alt=":thinking_face:" title=":thinking_face:" /&gt;🤷 I can't say something more.&lt;/P&gt;&lt;P&gt;You can try repeat execution of the failing request and catch the response header block. There should be a header 'x-dropbox-request-id'. Post this header's value and let's hope Greg will be able find out something more.&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 13:38:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625323#M28921</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-09-27T13:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625327#M28923</link>
      <description>&lt;P&gt;Hi Sdrawko,&lt;/P&gt;&lt;P&gt;just added some lines of code to my method to fetch the response header fields.&lt;/P&gt;&lt;P&gt;Here're the values straight out of the debugger &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;~response_line HTTP/1.0 409 Conflict&lt;BR /&gt;~server_protocol HTTP/1.0&lt;BR /&gt;~status_code 409&lt;BR /&gt;~status_reason Conflict&lt;BR /&gt;cache-control no-cache&lt;BR /&gt;content-security-policy sandbox allow-forms allow-scripts&lt;BR /&gt;x-content-type-options nosniff&lt;BR /&gt;content-type application/json&lt;BR /&gt;accept-encoding identity,gzip&lt;BR /&gt;date Tue, 27 Sep 2022 13:46:25 GMT&lt;BR /&gt;server envoy&lt;BR /&gt;content-encoding gzip&lt;BR /&gt;vary Accept-Encoding&lt;BR /&gt;x-dropbox-response-origin far_remote&lt;BR /&gt;x-dropbox-request-id 0b7745ec6a394c35861332368f0f641d&lt;BR /&gt;connection close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 13:51:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625327#M28923</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-27T13:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625380#M28927</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1575475"&gt;@1575475&lt;/a&gt; Apologies for the lack of clarity here. For team folders in particular, you need to add members via groups; you can't add them individually. I'll ask the team to see if we can clarify this in the documentation and error response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, you would set the "members" parameter like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;"members":[{"member":{".tag":"dropbox_id","dropbox_id":"GROUPIDHERE"}}]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;You can get group IDs from &lt;A href="https://www.dropbox.com/developers/documentation/http/teams#team-groups-list" target="_blank"&gt;/2/team/groups/list&lt;/A&gt;, etc.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 15:42:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625380#M28927</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-09-27T15:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error when adding team members to an initally created team folder via http endpoint</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625554#M28931</link>
      <description>&lt;P&gt;Hi Greg, hi Sdrawko,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;many, many kudos to the both of you for your most valuable help!&lt;/P&gt;&lt;P&gt;I now know how to proceed ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 07:58:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Error-when-adding-team-members-to-an-initally-created-team/m-p/625554#M28931</guid>
      <dc:creator>1575475</dc:creator>
      <dc:date>2022-09-28T07:58:52Z</dc:date>
    </item>
  </channel>
</rss>

