/evidence/{evidenceGuid}/metadata

Get Evidence Metadata

get
Path parameters
evidenceGuidstringRequired
Responses
200
The request was successful, and the server has returned the requested resource in the response body.
application/json
get
GET /api/v1/evidence/{evidenceGuid}/metadata HTTP/1.1
Host: sentinel.metatable.dev
Accept: */*
200

The request was successful, and the server has returned the requested resource in the response body.

{
  "streamUri": "text",
  "evidenceGuid": "text",
  "workspaceGuid": "text",
  "created": "text",
  "createdBy": "text",
  "fileName": "text",
  "caseId": "text",
  "evidenceType": "text",
  "metadata": {
    "comment": "text",
    "customS3": true
  },
  "archivePending": true
}

Comments must be 1-1000, and createdBy must be 1-100. If any are null/undefined they will not be updated.

Update Evidence Metadata

patch
Authorizations
Path parameters
evidenceGuidstringRequired
Body
commentstringOptional
createdBystringOptional
patch
PATCH /api/v1/evidence/{evidenceGuid}/metadata HTTP/1.1
Host: sentinel.metatable.dev
Authorization: Bearer BearerJwt
Content-Type: application/json
Accept: */*
Content-Length: 37

{
  "comment": "text",
  "createdBy": "text"
}

Last updated

Was this helpful?