Cloud Storage JSON API
  1. objectAccessControls
Cloud Storage JSON API
  • buckets
    • /b
      GET
    • /b
      POST
    • /b/{bucket}
      DELETE
    • /b/{bucket}
      GET
    • /b/{bucket}
      PATCH
    • /b/{bucket}
      PUT
  • bucketAccessControls
    • /b/{bucket}/acl
      GET
    • /b/{bucket}/acl
      POST
    • /b/{bucket}/acl/{entity}
      DELETE
    • /b/{bucket}/acl/{entity}
      GET
    • /b/{bucket}/acl/{entity}
      PATCH
    • /b/{bucket}/acl/{entity}
      PUT
  • defaultObjectAccessControls
    • /b/{bucket}/defaultObjectAcl
      GET
    • /b/{bucket}/defaultObjectAcl
      POST
    • /b/{bucket}/defaultObjectAcl/{entity}
      DELETE
    • /b/{bucket}/defaultObjectAcl/{entity}
      GET
    • /b/{bucket}/defaultObjectAcl/{entity}
      PATCH
    • /b/{bucket}/defaultObjectAcl/{entity}
      PUT
  • objects
    • /b/{bucket}/o
      GET
    • /b/{bucket}/o
      POST
    • /b/{bucket}/o/watch
      POST
    • /b/{bucket}/o/{object}
      DELETE
    • /b/{bucket}/o/{object}
      GET
    • /b/{bucket}/o/{object}
      PATCH
    • /b/{bucket}/o/{object}
      PUT
    • /b/{destinationBucket}/o/{destinationObject}/compose
      POST
    • /b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}
      POST
  • objectAccessControls
    • /b/{bucket}/o/{object}/acl
      GET
    • /b/{bucket}/o/{object}/acl
      POST
    • /b/{bucket}/o/{object}/acl/{entity}
      DELETE
    • /b/{bucket}/o/{object}/acl/{entity}
      GET
    • /b/{bucket}/o/{object}/acl/{entity}
      PATCH
    • /b/{bucket}/o/{object}/acl/{entity}
      PUT
  • channels
    • /channels/stop
  1. objectAccessControls

/b/{bucket}/o/{object}/acl/{entity}

DELETE
/b/{bucket}/o/{object}/acl/{entity}
objectAccessControls
Permanently deletes the ACL entry for the specified entity on the specified object.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://storage.googleapis.com/storage/v1beta2/b//o//acl/'
Response Response Example
{}

Request

Path Params
bucket
string 
required
Name of a bucket.
object
string 
required
Name of the object.
entity
string 
required
The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.
Query Params
generation
string 
optional
If present, selects a specific revision of this object (as opposed to the latest version, the default).

Responses

🟢200Successful response
application/json
Body
object {0}
Modified at 2023-08-15 08:12:16
Previous
/b/{bucket}/o/{object}/acl
Next
/b/{bucket}/o/{object}/acl/{entity}
Built with