- URL:
- https://<root>/community/users/[userName]/resources
- Methods:
- GET
Example usage
URL for User App Resources
https://www.arcgis.com/sharing/rest/community/users/jsmith/resourcesDescription
The /resources endpoint will provide access to all user app resources.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | For a complete listing, see Common parameters. | 
Response properties
| Property | Details | 
|---|---|
| 
 | The following paging properties are included in the response and they are described in Paging properties. 
 | 
| 
 | A JSON array of resource objects along with the resource  | 
| 
 | The resource  | 
| 
 | The type of access to user app resource. Values:  
 | 
JSON Response syntax
{
  "total": <total number of resources on the item>,
  "start": <the first record index in the response>,
  "num": <the number of resources in the response>,
  "nextStart": <the next entry index>,
  "userResources": [
    {
      "key": "<resource key>",
      "clientId": "<app where the resource is uploaded>",
      "created": <resource created datetime>,
      "size": <resource size>,
      "access": "<user app access>
    },
  ]
}JSON Response example
{
  "total": 3,
  "start": 1,
  "num": 3,
  "nextStart": -1,
  "userResources": [
    {
      "key": "user_settings.json",
      "clientId": "arcgisonline",
      "created": 1522711362000,
      "size": 56945,
      "access": "userappprivate"
    },
  ]
}