Skip to main content
POST
/
v2
/
FileListUserFiles
List user files
curl --request POST \
  --url http://localhost:3000/v2/FileListUserFiles \
  --header 'Content-Type: application/json' \
  --header 'X-Bunker-Token: <api-key>' \
  --data '
{
  "identity": "<string>",
  "request_metadata": {}
}
'
{
  "status": "ok",
  "token": "<string>",
  "files": [
    {
      "fileuuid": "<string>",
      "filename": "<string>",
      "mimetype": "<string>",
      "size": 123,
      "doublehash": "<string>",
      "creationtime": 123
    }
  ]
}

Authorizations

X-Bunker-Token
string
header
required

API token for authentication

Body

application/json
mode
enum<string>
required

Mode of user identification

Available options:
login,
token,
email,
phone,
custom
identity
string
required

User identifier corresponding to the mode

request_metadata
object

Additional metadata for the request

Response

200 - application/json

Files listed successfully

status
string
Example:

"ok"

token
string

User's unique token

files
object[]