Gau Backend Microservices
  1. Object Storage
Gau Backend Microservices
  • Account Service
    • Basic Auth
      • [Auth] Login
      • [Auth] Register
      • [Auth] Logout
    • OAuth 2.0
      • [Auth] Google Login
      • [Auth] Logout
    • Profile
      • [Profile] Update Profile
      • [Profile] Get Profile
      • [Profile] Get Security Info
      • [Profile] Update Avatar
      • [Profle] Get All Data
    • MFA
      • [TOTP] Get TOTP Authentication
      • [TOTP] Enable TOTP Authentication
      • [TOTP] Verify Login
  • Authorization Service
    • [Token] Renew Access Token
      GET
    • [Token] Create New Token
      POST
    • [Token] Check Access Token
      GET
    • [Token] Revoke Token
      DELETE
  • CDN Service
    • [CDN] Get File
      GET
  • Upload Service
    • [File] Upload File
      POST
    • [File] Get Upload File
      GET
  • Cloud Service
    • IAM
      • [IAM] Create IAM
    • Object Storage
      • [Bucket] Create Bucket
        POST
      • [Bucket] Delete Bucket By ID
        DELETE
      • [Bucket] Update Bucket Access
        PUT
      • [Bucket] Get Bucket Access
        GET
      • [Bucket] Get List Bucket By Owner
        GET
      • [File] Upload Object To Bucket
        POST
      • [File] Get All Object In Bucket
        GET
      • [File] Delete Object From Bucket
        DELETE
      • [Large File] Init Chunked Upload
        POST
      • [Large File] Upload Chunk (Multipart Form)
        POST
      • [Large File] Check Progress
        GET
      • [Large File] Complete Upload
        POST
      • [Large File] Abort Upload
        DELETE
    • Compute
      • [Compute] Get Compute Flavor
      • [Compute] Get Compute Image
  1. Object Storage

[File] Upload Object To Bucket

Developing
POST
https://api.gauas.com/api/v1/cloud/buckets/{id}/objects
Maintainer:Not configured

Request

Path Params

Body Params multipart/form-data

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.gauas.com/api/v1/cloud/buckets/51d3675d-ddce-4c02-8c38-666291dc87b5/objects' \
--form 'file=@"C:\\workspace\\Gauas\\gau-cloud-orchestrator\\backend\\scripts\\Chunked_Upload_API.postman_collection.json"' \
--form 'path=""'
Response Response Example
{}
Modified at 2026-01-09 09:58:12
Previous
[Bucket] Get List Bucket By Owner
Next
[File] Get All Object In Bucket
Built with