v8

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

Retrieve a specific trigger

Retrieves detailed information about a specific trigger identified by its type and topic. This endpoint returns comprehensive configuration data including all trigger properties, associated resources, and metadata.

Usage Notes:

  • The trigger_type parameter identifies the category of trigger (gateway, stream, subject)
  • The topic parameter is the unique name identifier for the specific trigger
  • The system constructs the full subject using these parameters: ms.trigger.{trigger_type}.{topic}
  • Different trigger types will return different sets of properties in the response
  • The response includes the full subject identifier which may be needed for other operations
get/trigger/triggers/{trigger_type}/{topic}

Path parameters

trigger_type'gateway' | 'stream' | 'subject' required

The type of trigger (gateway, stream, subject)

topicstring required

The unique topic identifier of the trigger (without the prefix)

Response

Successfully retrieved trigger

bodyobject

Complete trigger data containing all configurations and properties.

status_codeinteger

HTTP status code indicating the result of the operation.

Example response

{
  "metadata": {
    "subject": "ms.trigger.gateway.my-gateway-trigger"
  },
  "status_code": 200
}