I'm querying AGOL to get info on our users & their items. When I get a user via a request to https://my_org.maps.arcgis.com/sharing/rest/community/users/<userID>/?f=pjson&token=<valid token> it includes a userType property in the response. Looking @ the docs for a User I do not see what this represents. Most users return the value of 'arcgisonly' but a couple have 'both' for this property. Anyone know what the domain is for this property & what the values mean?
sample response:
<SPAN class="punctuation token">{</SPAN>
<SPAN class="string token">"username"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"my_username"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"fullName"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Terry Giles"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"firstName"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Terry"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"lastName"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Giles"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"preferredView"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="keyword token">null</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"description"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"Terry Giles, ent. account"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"email"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token"><SPAN>"</SPAN><A class="jive-link-email-small" href="mailto:my.email@work.gov" rel="nofollow noopener noreferrer" target="_blank">my.email@work.gov</A><SPAN>"</SPAN></SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="string token">"userType"</SPAN><SPAN class="punctuation token">:</SPAN> <SPAN class="string token">"arcgisonly"</SPAN><SPAN class="punctuation token">,</SPAN>
<SPAN class="punctuation token">.</SPAN><SPAN class="punctuation token">.</SPAN><SPAN class="punctuation token">.</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></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>Thanks, Terry