Last updated 3 months ago
Fetch an annotation by ID
The UUID of the annotation to fetch
Successful response
The annotation id
The annotation comment
Whether the annotation applies to all findings of this sensitive data
const response = await fetch('https://api.nightfall.ai/dlp/v1/annotations/{annotationId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "type": "DETECTOR_FALSE_POSITIVE", "comment": "text", "autoApply": false }