Data vaults – Files
This endpoint provides a way to retrieve information about the files or evidence associated with a specific data vault in Digital Evidence Archive, allowing users to access and manage the evidence related to the data vault.
URI
/datavaults/
dataVaultId
/files
HTTP methods
GET
List files within a datavault in given file path or datavault root
Name | Type | Required | Description |
---|---|---|---|
dataVaultId | String | True | Data vault ID to generate audit log for |
Name | Type | Required | Description |
---|---|---|---|
filePath | String | False | |
limit | Integer | False | |
next | String | False |
Status code | Response model | Description |
---|---|---|
200 | DataVaults_response_200_1 | Success |
Schemas
Response bodies
{ "dataVaultFiles": [ [ { "fileName": "string", "filePath": "string", "dataVaultUlid": "string", "fileSizeBytes": number, "sha256Hash": "string", "ulid": "string", "versionId": "string", "fileS3Key": "string", "uploadId": "string", "isFile": boolean, "contentType": "string", "executionId": "string", "created": "string", "updated": "string", "caseCount": number, "cases": [ { "ulid": "string", "name": "string" } ] } ] ], "next": "string" }
Properties
DataVaultFile
Property | Type | Required | Description |
---|---|---|---|
caseCount | number | False | |
cases | Array of type ScopedCase | False | |
contentType | string | False | |
created | string | False | |
dataVaultUlid | string | False | |
executionId | string | False | |
fileName | string | False | |
filePath | string | False | |
fileS3Key | string | False | |
fileSizeBytes | number | False | |
isFile | boolean | False | |
sha256Hash | string | False | |
ulid | string | False | |
updated | string | False | |
uploadId | string | False | |
versionId | string | False |
DataVaults_response_200_1
Property | Type | Required | Description |
---|---|---|---|
dataVaultFiles | Array of type Array of type DataVaultFile | False | |
next | string | False |
ScopedCase
Property | Type | Required | Description |
---|---|---|---|
name | string | False | |
ulid | string | False |