/evidence/create

Create Evidence

post
Authorizations
HTTPRequired

Jwt Auth: Authenticated requests contain a valid Json Web Token (JWT) as part of the Authorization: Bearer <JWT> header.

Your Sentinel API Key

Body
caseIdstringRequired
evidenceTypestring · enumRequiredDefault: MetadataPossible values:
evidenceContentstringRequired
post
/evidence/create
POST /api/v1/evidence/create HTTP/1.1
Host: sentinel.metatable.dev
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 68

{
  "caseId": "text",
  "evidenceType": "Metadata",
  "evidenceContent": "text"
}

Last updated

Was this helpful?