Kissaki Docs
API referenceFindings

Add Finding Note

POST
/findings/{finding_id}/notes

Path Parameters

finding_id*Finding Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Body of POST /findings/{id}/notes. Plaintext only - the note reads back verbatim, so no markup means nothing to sanitize before it does.

Response Body

application/json

application/json

curl -X POST "https://example.com/findings/string/notes" \  -H "Content-Type: application/json" \  -d '{    "body": "string"  }'
{  "id": "string",  "author": "string",  "body": "string",  "created_at": "2019-08-24T14:15:22Z"}