Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 748 Bytes

get-all.md

File metadata and controls

41 lines (34 loc) · 748 Bytes

Get all user files

Endpoint is responsible for returning all files for specific user (user data are in access token in header).

Request

METHOD: GET
URL: /files
HEADERS:
    "Authorization": "Bearer eyJhbGciOiJSUzUxMi.....Y1f05c9yvA;boundary="boundary"

Response

STATUS: 200 (Ok)
HEADERS:
    "Content-Type": "application/json; charset=utf-8"
BODY:
[
    {
        "size": 254384,
        "id": "kyjbyv0skjmg.png",
        "name": "architecture.png",
        "contentMD5": "H8+4yqZvKIIiZ9WjExlRJw=="
    },
    {
        "size": 12111,
        "id": "mydocuments/sd33rsff3qfe.png",
        "name": "diagram.png",
        "contentMD5": "w8+4yqasdIiZ9WjEdwdqwd=="
    }
]

Errors

STATUS: 401 (Unauthorized)