v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBSecurity Monitoring
Bulk subscribe to sample log generation
Subscribe to sample log generation for multiple Cloud SIEM content packs in a single call. Each requested content pack is processed independently; the response includes a per-item status so partial successes can be inspected.
Availability: this endpoint is restricted to Cloud SIEM trial organizations on an eligible pricing model. Non-trial orgs receive 403 Forbidden, the feature flag may also reject requests with 400 Bad Request, and legacy pricing tiers receive per-item responses with status: not_available.
post/api/v2/security_monitoring/sample_log_generation/subscriptions/bulk
Request body
Example request
{
"data": {
"attributes": {
"content_pack_ids": [
"aws-cloudtrail"
],
"duration": "3d"
},
"type": "bulk_subscription_requests"
}
}Response
OK
Example response
{
"data": [
{
"attributes": {
"content_pack_id": "aws-cloudtrail",
"created_at": "2026-05-08T20:02:13.77481Z",
"expires_at": "2026-05-11T20:02:13.77481Z",
"is_active": true,
"status": "subscribed"
},
"id": "123",
"meta": {
"error": "content pack does not exist",
"status": 200
},
"type": "subscriptions"
}
]
}