Summary
Get Trigger
Description
Get a Trigger document
Route
GET /operations-manager/triggers/:id
Roles
admin
engineering
apiread
operations
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
id |
string |
yes |
the id of the trigger to return |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
a trigger document obtained by its id |
Copied to Clipboard
{
"name": "My document",
"type": "schedule",
"enabled": false,
"actionType": "automations",
"actionId": "5cb7b531d06cceb89fd21b1c",
"firstRunAt": 9063645,
"processMissedRuns": "last",
"repeatUnit": "second",
"repeatFrequency": 39536780,
"_id": "4321abcdef694aa79dae47ad",
"created": "2019-04-16T00:43:22.038Z",
"createdBy": "5cb7b531d06cceb89fd21b1c",
"lastUpdated": "2019-04-16T00:43:22.038Z",
"lastUpdatedBy": "4321abcdef694aa79dae47ad",
"formId": null,
"formData": null,
"lastExecuted": 60912496,
"nextRunAt": 20531819,
"repeatInterval": 2602216,
"waitFlag": true
}