Get a list of file versions on legal hold for a legal hold assignment.
Due to ongoing re-architecture efforts this API might not return all file versions for this policy ID.
Instead, this API will only return file versions held in the legacy architecture. Two new endpoints will available to request any file versions held in the new architecture.
For file versions held in the new architecture, the GET /legal_hold_policy_assignments/:id/file_versions_on_hold API can be used to
return all past file versions available for this policy assignment, and the
GET /legal_hold_policy_assignments/:id/files_on_hold API can be used to
return any current (latest) versions of a file under legal hold.
The GET /legal_hold_policy_assignments?policy_id={id} API can be used to
find a list of policy assignments for a given policy ID.
Once the re-architecture is completed this API will be deprecated.
10001000The maximum number of items to return per page.
JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioViiDefines the position marker at which to begin returning results. This is used when paginating using marker-based pagination.
This requires usemarker to be set to true.
133870The ID of the legal hold policy to get the file version legal holds for.
Returns the list of file version legal holds for a specific legal hold policy.
An unexpected client error.
curl -X GET https://api.box.com/2.0/file_version_legal_holds?policy_id=133870 \
-H 'Authorization: Bearer <ACCESS_TOKEN>'BoxCollectionMarkerBased<BoxFileVersionLegalHold> holds = await client.LegalHoldPoliciesManager
.GetFileVersionLegalHoldsAsync(policyId: "11111");BoxLegalHoldPolicy policy = new BoxLegalHoldPolicy(api, id);
Iterable<BoxFileVersionLegalHold.Info> fileVersionHolds = policy.getFileVersionHolds();
for (BoxFileVersionLegalHold.Info fileVersionHold : fileVersionHolds) {
// Do something with the file version legal hold.
}legal_holds = client.legal_hold_policy(policy_id='12345').get_file_version_legal_holds()
for legal_hold in legal_holds:
print('Got file version legal hold with ID {0}'.format(legal_hold.id))client.legalHoldPolicies.getAllFileVersionLegalHolds('11111')
.then(holds => {
/* holds -> {
entries:
[ { type: 'legal_hold', id: '22222' },
{ type: 'legal_hold', id: '33333' },
{ type: 'legal_hold', id: '44444' } ],
limit: 100,
order:
[ { by: 'retention_policy_set_id, file_version_id',
direction: 'ASC' } ] }
*/
});client.legalHolds.listFileVersionPolicies(policyId: "1234") {
switch results {
case let .success(iterator):
for i in 1 ... 10 {
iterator.next { result in
switch result {
case let .success(hold):
print("Legal hold \(hold.id)")
case let .failure(error):
print(error)
}
}
}
case let .failure(error):
print(error)
}
}