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
Example response
{
"metadata": {
"subject": "ms.trigger.gateway.my-gateway-trigger"
},
"status_code": 200
}