v8

latestOpenAPI 3.0.3raw.githubusercontent.com2025-11-2851238.2 KB
Triggers

Retrieve all triggers

Retrieves all triggers matching a specific subject pattern. This endpoint provides a comprehensive view of all available triggers that match the given pattern, including their configurations, types, and associated metadata.

Usage Notes:

  • Use wildcards in the subject pattern to match multiple triggers
  • Results include all trigger types (gateway, stream, subject)
  • Each trigger includes its complete configuration
  • The subject pattern forms part of the unique identifier for triggers
  • The response includes total count of matching triggers
get/trigger/triggers

Query parameters

subject_patternstring required
Example:ms.trigger.subject_pattern

The subject pattern to match triggers. Can include wildcards (e.g., 'ms.trigger.' to match all triggers, or 'ms.trigger.gateway.' to match only gateway triggers).

Response

Successfully retrieved triggers

status_codeinteger

HTTP status code indicating the result of the operation.

Example response

{
  "body": {
    "results_total": 2
  },
  "metadata": {
    "subject": "ms.trigger.subject_pattern"
  },
  "status_code": 200
}
All 5 operations