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] Delete Object From Bucket

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

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.gauas.com/api/v1/cloud/buckets//objects/' \
--header 'Authorization: Bearer {{ACCESS-TOKEN}}'
Response Response Example
{}
Modified at 2026-01-01 11:43:05
Previous
[File] Get All Object In Bucket
Next
[Large File] Init Chunked Upload
Built with