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
  • application/json
Path Parameters
id
Type: string
Required: true
The identifier of the storage collection.
Header Parameters
If-Match
Type: string
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 Parameter
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.
Nested Schema : stringArray
Type: array
Minimum Number of Items: 0
An array of string values.

Response

Supported Media Types
  • application/json
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
Nested Schema : errorDetails
Type: object
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
Nested Schema : errorDetails
Type: object

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"