- Site
- Session
- User
- Callback
- Workflow
- File
- Share
- VAS
- Group
- WebDAV
List accounts
GET
/devices/dav
Auth: JWT Required
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Query Params
page_size
integer
required
>= 10<= 100
Example:
50
next_page_token
string
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/devices/dav?page_size=50&next_page_token'
Responses
🟢200Success
application/json
Body
data
array [object {2}] | null
optional
pagination
object
required
accounts
array[object (DavAccount) {6}]
required
code
integer
required
0
- Success.Default:
0
Example:
0
msg
string
optional
error
string | null
optional
correlation_id
string <uuid> | null
optional
Example:
b4351ecc-ee1a-4455-bc94-2c3dbcc58538
Example
{
"code": 0,
"data": {
"accounts": [
{
"id": "4ycW",
"created_at": "2025-06-13T13:37:27+08:00",
"name": "my files",
"uri": "cloudreve://my",
"password": "f6zxgh7j4yo3vuvtdpcxd6na89efvmpo",
"options": ""
},
{
"id": "WNuO",
"created_at": "2023-12-04T18:51:42+08:00",
"name": "test",
"uri": "cloudreve://Y8bCn@share",
"password": "ery99robfkr7oxhwqp6hbshpus782l5k",
"options": "AA=="
}
],
"pagination": {
"page": 0,
"page_size": 50,
"is_cursor": true
}
},
"msg": ""
}
Modified at 2025-06-13 05:40:26