API Documentation
Endpoints
- Aegister Threat Blocker
- Cloud Defender
- Cyber Assurance
- Documents
- Notifications
- Organizations
- Perimeter Protection
- Search
- Assessments
- Log Analysis
- VPN
Cyber Assurance
Create Security Framework
Create new Cyber Assurance Security Framework.
POST
/
api
/
v1
/
cyber-assurance
/
security-frameworks
Copy
curl --request POST \
--url https://app.aegister.com/api/v1/cyber-assurance/security-frameworks \
--header 'Content-Type: application/json' \
--header 'X-Aegister-Token: <api-key>' \
--data '{
"title": "Sample Framework",
"security_frameworks": [
{
"id": "C1",
"type": "control",
"title": "Control 1",
"weight": 0.2,
"details": {},
"evidences": [],
"frequency": "0 0 1 * *",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer et posuere erat. Phasellus iaculis metus mauris, quis accumsan felis fermentum at.",
"evidence_type": "self"
}
]
}'
Copy
{
"error": 0,
"messages": [],
"security_framework": 123
}
Authorizations
Body
Response
201
application/json
The response is of type object
.
Copy
curl --request POST \
--url https://app.aegister.com/api/v1/cyber-assurance/security-frameworks \
--header 'Content-Type: application/json' \
--header 'X-Aegister-Token: <api-key>' \
--data '{
"title": "Sample Framework",
"security_frameworks": [
{
"id": "C1",
"type": "control",
"title": "Control 1",
"weight": 0.2,
"details": {},
"evidences": [],
"frequency": "0 0 1 * *",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer et posuere erat. Phasellus iaculis metus mauris, quis accumsan felis fermentum at.",
"evidence_type": "self"
}
]
}'
Copy
{
"error": 0,
"messages": [],
"security_framework": 123
}
Assistant
Responses are generated using AI and may contain mistakes.