Create, retrieve, and delete compliance evidence linked to Raptor Comply resources like cyber assets, tasks, and policy documents. Coming soon.Evidence records are how Raptor Comply ties proof to compliance. Whenever you complete a control activity - a patch, a physical inspection, a configuration review - you need a verifiable artifact that demonstrates it happened. Raptor Comply lets you link evidence (files, notes, external links) to any compliance resource in the platform, such as a cyber asset, a task, or a policy document. When the Evidence API launches, you will be able to upload and retrieve that proof programmatically, eliminating the need to manually attach files through the UI. This makes it practical to pipe evidence directly from your operational tooling - patch management systems, SIEM exports, ticketing platforms - straight into your Raptor Comply compliance record.
These endpoints are coming soon. The Raptor Comply API does not currently expose
Evidence operations to API key callers. This page describes the planned surface; subscribe to release notes to be notified when it ships.Authentication
When these endpoints ship, requests will require your API key in theX-API-Key header:
https://api.raptormaps.com.
How evidence works
An evidence record is a lightweight object that represents one artifact of proof. It holds:- A link to the resource it supports - identified by
resourceIdandresourceType(e.g., a cyber asset ID, a task ID, or a policy document ID). - The artifact itself - either a file reference (linked via a
fileIdfrom the Files API), a plain-text note, or an external URL. - Metadata - who created it, when, and an optional description to explain what the evidence demonstrates.
Endpoint reference
Sample request and response shapes
Create an evidence record
201 Created:
List all evidence for a resource
200 OK:
Retrieve a single evidence record
200 OK:
Delete an evidence record
204 No Content
Evidence types
When you create an evidence record, set thetype field to one of the following values:
Supported resource types
Evidence can be attached to any of the following resource types in Raptor Comply:What you can build
Once these endpoints are available, you will be able to:- Automate evidence collection from operational systems. When your patch management platform confirms a patch, POST the patch report directly to the corresponding cyber asset as an evidence record - no manual upload required.
- Build compliance dashboards. Use
GET /evidence/by-resource/{resourceId}to show the evidence count and status for each asset in a custom reporting view. - Integrate ticketing systems. When a Jira ticket or ServiceNow incident is closed, automatically create an evidence record on the related Raptor Comply task or asset.
- Audit package generation. Pull all evidence for a set of assets or tasks and bundle them into an organized export for your NERC auditors.