Unassign storage policy

delete
https://api.box.com/2.0
/storage_policy_assignments/:storage_policy_assignment_id

Delete a storage policy assignment.

Deleting a storage policy assignment on a user will have the user inherit the enterprise's default storage policy.

There is a rate limit for calling this endpoint of only twice per user in a 24 hour time frame.

Request

bearer [ACCESS_TOKEN]
application/json

Path Parameters

stringin pathrequired
932483

The ID of the storage policy assignment.

Response

none

Returns an empty response when the storage policy assignment is successfully deleted.

application/jsonClient error

An unexpected client error.

delete
Unassign storage policy
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

cURL
curl -i -X DELETE "https://api.box.com/2.0/storage_policy_assignments/932483" \
     -H "authorization: Bearer <ACCESS_TOKEN>" \
     -d '{
       "items": {
         "type": "storage_policy",
         "id": "1434325"
       }
     }'
Java
BoxStoragePolicyAssignment assignment = new BoxStoragePolicyAssignment(api, "dXNlcl8xMjM0");
assignment.delete();
Python
client.storage_policy_assignment(assignment_id='12345').delete()
print('The storage policy assignment was successfully delete!')
Node
client.storagePolicies.removeAssignment('dXNlcl8yMjIyMg==')
    .then(() => {
        // deletion succeeded — no value returned
    });
iOS
client.storagePolicies.deleteAssignment(storagePolicyAssignmentId: "22222") { result: Result<Void, BoxSDKError>} in
    guard case .success = result else {
        print("Error deleting storage policy assignment")
        return
    }
    print("Storage policy assignment is successfully deleted.")
}