to navigate to open Esc to close Search by Algolia

API: Getting user account information

URL /api.php/Core/account/info
Required scope profile
Optional additional scope email
HTTP Method GET/POST
Output format JSON

Sample output:

 1{
 2    "success": true,
 3    "data": {
 4        "puid": "9d1c6a2e-...",
 5        "activated": true,
 6        "username": "john",
 7        "name": "John",
 8        "name2": "Doe",
 9        "company": "Example Ltd.",
10        "website": "https://www.example.com",
11        "logo": "https://www.example.com/logo.png",
12        "email": "johndoe@email.com",
13        "permissions": {
14            "readOnly": false,
15            "upload": true,
16            "download": true,
17            "download_folders": true,
18            "edit_files": true,
19            "rename_move_delete": true,
20            "collections": true,
21            "starring": true,
22            "read_comments": true,
23            "write_comments": true,
24            "weblink": true,
25            "share": true,
26            "metadata": true,
27            "write_metadata": true,
28            "file_history": true,
29            "hasHomeFolder": true
30        }
31    }
32}

Notes:

  • company, website and logo are included only when set on the account.
  • email is included only when the access token carries the email scope.
  • edit_files, rename_move_delete, collections, starring and write_metadata are returned since FileRun 2026.3.1. readOnly is kept for older clients, as the negation of rename_move_delete.
  • file_history is true only when file activity logging is enabled on the installation and the account has the permission.
  • The 2fa property is no longer returned since FileRun 2026.3.0.