Skip to main content

Get Profile

Route

/v2/streaming/profiles/{id}

Description

Retrieve a specific streaming profile by its unique identifier.

Method

GET

Inputs

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the profile

Output

FieldTypeDescription
resourcesarray[Profile]Array containing the requested profile
errorsarray[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": []
}