Read a trigger
Trigger
Read a trigger
A GET to the /triggers/{triggerId} endpoint allows your application to retrieve a specific trigger.
GET
Read a trigger
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.{tenant}.getomneo.com/api/v3/triggers/{trigger}{
"data": {
"id": 123,
"name": "<string>",
"trigger": "<string>",
"description": "<string>",
"notes": "<string>",
"actions": [
{
"id": 123,
"uuid": "<string>",
"references_id": "<string>",
"name": "<string>",
"sort_order": 123,
"description": "<string>",
"notes": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>",
"is_dynamic": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"is_active": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}A GET to the /triggers/{triggerId} endpoint allows your application to retrieve a specific trigger.
curl --request GET \
--url https://api.{tenant}.getomneo.com/api/v3/triggers/{trigger}{
"data": {
"id": 123,
"name": "<string>",
"trigger": "<string>",
"description": "<string>",
"notes": "<string>",
"actions": [
{
"id": 123,
"uuid": "<string>",
"references_id": "<string>",
"name": "<string>",
"sort_order": 123,
"description": "<string>",
"notes": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>",
"is_dynamic": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"is_active": true,
"created_at": "<string>",
"updated_at": "<string>"
}
}