Get Profile
Route
/v2/streaming/profiles/{id}
Description
Retrieve a specific streaming profile by its unique identifier.
Method
GET
Inputs
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier of the profile |
Output
| Field | Type | Description |
|---|---|---|
resources | array[Profile] | Array containing the requested profile |
errors | array[Error] | Any errors encountered |
Rate Limit
- 60 requests per minute per API key
- 5 concurrent requests per endpoint
Example Response
{
"resources": [
{
"id": "profile-123",
"name": "Security Events Stream",
"description": "Stream security incidents to SIEM",
"sources": [
{
"type": "incidents"
}
],
"destination_id": "dest-456",
"count_threshold": 1000,
"delay_threshold": "10s",
"state": "active",
"dead_letter_state": "ready",
"scope_id": "scope-789",
"config": {
"include_ai_summary": true
}
}
],
"errors": []
}