Summary
Update Trigger
Description
Update a Trigger.
Route
PATCH /operations-manager/triggers/:id
Roles
admin
apiwrite
engineering
operations
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| id |
string |
yes |
The id of the Trigger to update. |
| updates |
object |
yes |
The details of the Trigger document to update. |
Copied to Clipboard
{
"title": "updates",
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "trigger-update",
"oneOf": [
{
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"enabled": false,
"actionType": "automations",
"actionId": "7ceeead1d88ee394a3b7b067",
"lastExecuted": 81902669,
"migrationVersion": -68387232,
"type": "endpoint",
"verb": "POST",
"routeName": "CSMU",
"jst": "4ccf92639076e940263e0b09"
},
{
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"enabled": true,
"actionType": "automations",
"actionId": "076ff75791e1da8244ae68e9",
"lastExecuted": null,
"migrationVersion": -47853697,
"type": "eventSystem",
"source": "aliquip veniam",
"topic": "ipsum nulla incididunt irure ullamco",
"schema": null,
"legacyWrapper": true,
"jst": "fbe3b20388884825a465c027"
},
{
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"enabled": true,
"actionType": "automations",
"actionId": "8f72015485ff2b88c8d3ca88",
"lastExecuted": 74167317,
"migrationVersion": -63690023,
"type": "manual",
"formData": {
"ip": "1.2.3.4",
"name": "myNewDevice"
},
"formSchemaHash": "culpa do aliqua",
"legacyWrapper": true,
"formId": "849e16d931a52e4b21aaef2a"
},
{
"repeatUnit": "week",
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"enabled": true,
"actionType": "automations",
"actionId": "a51ffc6806949eae6d1ae9a3",
"lastExecuted": 87231324,
"migrationVersion": 82087806,
"repeatInterval": 30000,
"formId": null
}
]
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| result |
object |
The result of the update operation. |
Copied to Clipboard
{
"message": "Successfully created the requested item",
"data": {
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"enabled": true,
"actionType": "automations",
"actionId": "9cbc921e0a52d084936dee92",
"lastExecuted": null,
"migrationVersion": 35403994,
"createdBy": "Pronghorn",
"created": "2023-10-01T18:25:39.678Z",
"lastUpdatedBy": "Pronghorn",
"lastUpdated": "1978-08-13T08:05:10.817Z",
"_id": "4ac25193db0b7f1628cda202"
}
}