Hi,
I am the owner of an ArcGIS Online organizational account. Somebody shared a Feature Collection in a group within my organization that I intend to download. The person is essentially transferring the data to me, at which point i can add it to my Content and share with the group. There is no option to download data directly on ArcGIS Online. I think this is a simple ownership level issue.
On the Feature Layer page the options are:
View in SceneViewer or MapViewer or ArcGIS Desktop. When I upload data to the group there is a download or save data option. In this case in the Overview tab --> Sharing Level is set to 'Owner' of whom I am not. It is owned by the guy who shared it. How do I download this data?
FYI I endeavored on this journey using ArcGIS package to get my scripting reportoire operational. Here is code
```
my_org_gis <SPAN class="operator token">=</SPAN> GIS<SPAN class="punctuation token">(</SPAN>username <SPAN class="operator token">=</SPAN> <SPAN class="string token">'my_username'</SPAN><SPAN class="punctuation token">,</SPAN> password <SPAN class="operator token">=</SPAN> <SPAN class="string token">'sssshh, secret'</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="comment token"># 5 is the feature id in my content</SPAN>
feature_collection <SPAN class="operator token">=</SPAN> my_org_gis<SPAN class="punctuation token">.</SPAN>content<SPAN class="punctuation token">.</SPAN>get<SPAN class="punctuation token">(</SPAN><SPAN class="number token">5</SPAN><SPAN class="punctuation token">)</SPAN>
fp_download <SPAN class="operator token">=</SPAN> <SPAN class="string token">'path/to/download'</SPAN>
gdb_name <SPAN class="operator token">=</SPAN> <SPAN class="string token">'eagle.gdb'</SPAN>
result <SPAN class="operator token">=</SPAN> feature_collection<SPAN class="punctuation token">.</SPAN>export<SPAN class="punctuation token">(</SPAN>gdb_name<SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'File Geodatabase'</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
```
And the meat of the error message:
---> RuntimeError: You do not have permissions to access this resource or perform this operation.
(Error Code: 403)