API documentation
    API documentation
    • Back to home
    • Folder
    • Create
      POST
    • Update
      PUT
    • Delete
      DELETE
    • Move folder
      POST
    • Copy folder
      POST
    • List
      GET
    • Detail
      GET

      Detail

      Developing
      GET
      https://api.everabyte.io/api/folders/details/{folderId}
      Endpoint: /folders/details/{folderId}
      Method: GET

      Path Parameters#

      folderId (required, string): The unique identifier of the folder to retrieve details for.

      Request Body#

      None

      Example Request#

      GET /folders/details/yjkuy7ii7iu8i9i8
      Content-Type: application/json
      Authorization: Bearer <your_access_token>

      Example Success Response (200 OK)#

      {
          "status": 200,
          "data": {
              "id": "yjkuy7ii7iu8i9i8",
              "name": "CV",
              "visibility": "private",
              "createdAt": "2025-12-23T12:02:11.984Z",
              "updatedAt": "2025-12-23T12:02:11.984Z",
              "lastAccessAt": null,
              "totalFiles": 0,
              "totalSubfolders": 0,
              "totalSizeByte": 0,
              "sharedUsersCount": 0,
              "ownerFolder": {
                  "id": "s0thxcg1r2cpiuu848znffvb",
                  "firstName": null,
                  "lastName": null,
                  "username": "pronestyr27",
                  "email": "ind2@example.com",
                  "displayName": "pronestyr27"
              },
              "displayPath": "/CV",
              "locationLabel": "[object Object] (eu-west-1)",
              "parentId": null,
              "parentName": null,
              "isRoot": true,
              "accessUrl": "/folders/details/yjkuy7ii7iu8i9i8",
              "shareUrl": "/folders/share/yjkuy7ii7iu8i9i8"
          }
      }

      Response Codes#

      200 OK: Folder details retrieved successfully.
      401 Unauthorized: The current user is not authorized to access this folder.
      404 Not Found: The specified folderId does not exist.
      500 Internal Server Error: Unexpected server error.

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************
      Path Params

      Request Code 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 'https://api.everabyte.io/api/folders/details/' \
      --header 'Authorization: Bearer <token>'

      Responses

      🟢200Success
      application/json
      Body

      Example
      {}
      Modified at 2025-12-23 13:58:13
      Previous
      List
      Built with