Delete Collection Grant

delete

/mobile/tools/1.0/collections/{id}/grants

Removes the collection's grants for the specified permission (action) for the named roles.

Request

Supported Media Types
Path Parameters
Header Parameters
  • The request completes successfully only if the ETag of the corresponding asset matches the value of this HTTP request header. To force overwrite, pass the value `*`.
Body ()
Access permission and the roles that are granted that permission.
Root Schema : storageCollectionGrant
Type: object
Access permission and the roles that are granted that permission.
Show Source
  • The type of access that is granted to members who have one or more of the specified roles. The valid values are READ and READ_WRITE.
  • stringArray
    Minimum Number of Items: 0
    An array of string values.
Nested Schema : stringArray
Type: array
Minimum Number of Items: 0
An array of string values.
Show Source

Response

Supported Media Types

204 Response

The grants for the specified action for the named roles were removed. No content was returned in this response.

400 Response

The grant wasn't deleted due to an incorrect request.
Body ()
Root Schema : error
Type: object
Show Source
Nested Schema : errorDetails
Type: object
Show Source

412 Response

The operation failed based on the `If-Match` condition. Typically, this is the result of concurrent modification detection. It also can be the result of improper values specified in the request headers.
Body ()
Root Schema : error
Type: object
Show Source
Nested Schema : errorDetails
Type: object
Show Source

Examples

The following example shows how to delete a collection???s grant using cURL. For more information about cURL, see Use cURL.

curl -i -X DELETE -d @body.json -H "Content-Type: application/json; charset=utf-8" -H "Authorization: Bearer $TOKEN" "$BASE_URL/mobile/tools/1.0/collections/0d1327c9-ef64-4a3f-a685-1d413cc68797/grants"

Example of Request Body

The following shows an example of the request body. Note that if there are several roles that are associated with the READ action, only the customer grant is removed.

{
   "action":"READ",
   "roles":["customer"]
}

Example of Response Header

The following shows an example of the response headers. The 204 status indicates that the grant was either deleted or it did not exist.

204 NO_CONTENT
Date: Wed, 28 Jun 2017 20:00:11 GMT
Etag: "5"