The Security Center API provides a comprehensive set of endpoints to help you manage and monitor security in your system. Below is an overview of the security-related API endpoints available.
Endpoints
- List Threats: Get a list of threats detected by the Security Center.
GET /api/security/threats
- View Threat Details: Retrieve detailed information about a specific threat.
GET /api/security/threats/{id}
- Create Threat Rule: Define a new rule to detect threats.
POST /api/security/threatrules
- Delete Threat Rule: Remove an existing threat rule.
DELETE /api/security/threatrules/{id}
- List Security Policies: Get a list of security policies in place.
GET /api/security/policies
- View Policy Details: Retrieve detailed information about a specific security policy.
GET /api/security/policies/{id}
- Create Security Policy: Define a new security policy.
POST /api/security/policies
- Update Security Policy: Modify an existing security policy.
PUT /api/security/policies/{id}
- List Security Events: Retrieve a list of security events.
GET /api/security/events
- View Event Details: Get detailed information about a specific security event.
GET /api/security/events/{id}
Example Usage
To list the threats detected by the Security Center, you can make a GET request to /api/security/threats
.
GET /api/security/threats
For more information on API usage and best practices, please refer to our API Reference.
Security Center Dashboard