Skip to main content
GET
/
apps
/
{app_id}
/
files
Get folder structure
curl --request GET \
  --url https://shardcloud.app/api/apps/{app_id}/files \
  --header 'Authorization: Bearer <token>'
[
  {
    "path": "<string>",
    "type": "<string>",
    "name": "<string>",
    "size": 123,
    "last_modified": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string<uuid>
required

Query Parameters

path
string
default:/

Directory path

Response

Folder structure

path
string
type
string
name
string
size
integer
last_modified
integer
I