Backend API
  1. Cloud storage
Backend API
  • Projects
    • Manager
      • Add a member to project
      • Delete a member
    • tasks
      • Manager
        • Manager add task to user
        • Manager delete task
        • Manager edits a project
        • Manager get user tasks
      • Get personal tasks
      • Add personal task
      • User edits task status
    • Owner
      • Delete a project
    • Cloud storage
      • Store to public storage
        POST
      • Store to private storage
        POST
      • Get public files
        GET
      • Get private files
        GET
    • User status in a project
      GET
    • Create a project
      POST
    • Get all user projects
      GET
    • Get single project
      GET
    • get chatrooms keys
      GET
    • Search files
      GET
    • Get statistics
      GET
  • Auth
    • Login
      POST
    • Register
      POST
  • User
    • invitations
      • Get invitations
      • Decline invitation
      • Accept invitation
    • profile
      • Get profile
      • Edit profile
      • Update image
      • Update image Copy
  • Register
    POST
  • Untitled Endpoint
    POST
  1. Cloud storage

Store to private storage

Developing
POST
http://127.0.0.1:8000/projects/6bff27b8-9052-4edb-adc3-4578f1f360cf/storage/private

Request

Header Params

Body Params multipart/form-data

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 POST 'http://127.0.0.1:8000/projects/6bff27b8-9052-4edb-adc3-4578f1f360cf/storage/private' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6ImIzZmVmM2MzLTVmNjUtNDQ1Zi05MTlhLTBiOGNlNDU1YzdlOSIsImV4cCI6MTcwOTE0MzY5MH0.smenM8dN-h4Ox1nJr4B-zxTNZ0pjPFwfd2ha5XMJrjg' \
--form 'file=@"C:\\Users\\HP\\Downloads\\Solution_overview_1.pdf"'

Responses

🟢200OK
application/json
Body

Example
{}
Modified at 2024-02-28 09:06:34
Previous
Store to public storage
Next
Get public files
Built with