Summary
Import Triggers
Description
Import Triggers.
Route
PUT /operations-manager/triggers
Roles
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| triggers | array | yes | An array of exported Trigger documents. |
| options | object | yes | Optional parameters. |
{ "triggers": [ { "name": true, "type": true, "enabled": 53550439.07098845, "actionType": true, "actionId": false, "formData": "nulla labore esse", "firstRunAt": false, "processMissedRuns": "quis ad sint Ut", "repeatUnit": 36077909, "repeatFrequency": 41798009, "repeatInterval": 9676206, "_id": 30319727, "formId": 78898339.26254317 }, { "name": "myCoolDocumentName", "type": "manual", "enabled": false, "actionType": "automations", "actionId": "c028d421b852e4f0475c3142", "formData": { "ip": "1.2.3.4", "name": "myNewDevice" }, "_id": "37e5c719615020b9c8c7d6b0", "formId": "myCoolDocumentName", "description": "Some helpful information about the document", "lastExecuted": null, "migrationVersion": 20713884, "createdBy": null, "created": "1995-05-03T09:15:02.489Z", "lastUpdatedBy": "dolor tempor eu in ipsum", "lastUpdated": "1992-05-26T07:50:14.04Z", "formSchemaHash": "eiusmod", "legacyWrapper": true }, { "name": "myCoolDocumentName", "type": "manual", "enabled": false, "actionType": "automations", "actionId": "47e72947974d993470fef5c8", "formData": { "ip": "1.2.3.4", "name": "myNewDevice" }, "_id": "8c06bc78b51cd32c5e35fe01", "formId": "myCoolDocumentName", "description": "Some helpful information about the document", "lastExecuted": null, "migrationVersion": 60336611, "createdBy": "mollit incididunt irure deserunt", "created": "1949-04-01T11:52:27.495Z", "lastUpdatedBy": "laborum", "lastUpdated": "1977-01-05T22:01:08.202Z", "formSchemaHash": "consequat dolor eiusmod", "legacyWrapper": false }, { "title": "triggers" }, { "name": "myCoolDocumentName", "type": "eventSystem", "enabled": true, "actionType": "automations", "actionId": "8bf1deb23bad479d4281cdfa", "source": "dolore", "topic": "laborum dolore consequat labore nulla", "schema": null, "_id": "0e0779181654a9bc3ae08b5d", "description": "Some helpful information about the document", "lastExecuted": null, "migrationVersion": 29707383, "legacyWrapper": false, "createdBy": null, "created": "1961-09-16T06:11:39.102Z", "lastUpdatedBy": null, "lastUpdated": "1996-09-16T04:48:25.952Z" } ], "options": { "adapterMap": { "staging": "production" } } }
{ "type": "object", "properties": { "triggers": { "title": "triggers", "type": "array", "items": { "title": "triggers", "$ref": "trigger-json" } }, "options": { "title": "options", "type": "object", "properties": { "adapterMap": { "type": "object", "description": "A mapping of provenance names to be converted upon import, specified in \"old_name\": \"new_name\" format.", "examples": [ { "staging": "production" }, { "old_name": "new_name" } ] } }, "additionalProperties": false } }, "required": [ "triggers", "options" ], "additionalProperties": false }
Return
| Name | Type | Description |
|---|---|---|
| createdTigger | object | The result of the import operation. |
{ "message": "Successfully created the requested item", "data": [ { "success": false, "data": { "name": "myCoolDocumentName", "description": "Some helpful information about the document", "enabled": true, "actionType": "automations", "actionId": "d70b1917cb38c0f76d50b4bd", "lastExecuted": 28952083, "migrationVersion": -34034032, "createdBy": "b2b564c08234a07a949693bb", "created": "1987-12-14T04:33:14.346Z", "lastUpdatedBy": "5f4c84db593b9ff36d4fcffd", "lastUpdated": "1976-08-17T01:58:15.424Z", "_id": "18cfded41b70b1fe25cc3a15" } }, { "success": true, "data": { "name": "myCoolDocumentName", "description": "Some helpful information about the document", "enabled": false, "actionType": "automations", "actionId": "16fc9d8a57332c068c9b2938", "lastExecuted": 7652434, "migrationVersion": -95406147, "createdBy": "964f00031aad468b3a50a1d1", "created": "1979-02-17T13:46:27.582Z", "lastUpdatedBy": "81227d20bf0f8fbcae951190", "lastUpdated": "1980-06-19T00:04:13.411Z", "_id": "403141144f6fd2d2435c052b" } }, { "success": false, "data": { "name": "myCoolDocumentName", "description": "Some helpful information about the document", "enabled": true, "actionType": "automations", "actionId": "5f0ba0e525fc4e6d07b94d1f", "lastExecuted": null, "migrationVersion": -5105780, "createdBy": "ce9a62159d75f4138da78279", "created": "2003-07-12T04:39:51.485Z", "lastUpdatedBy": "b6128c9407cd0901f108a072", "lastUpdated": "1975-10-09T13:36:35.777Z", "_id": "6e6f7fd6b0ca0fb89238db85" } } ] }
{ "title": "createdTigger", "allOf": [ { "$ref": "common-api#/definitions/success-response" }, { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "success": { "type": "boolean" }, "data": { "allOf": [ { "$ref": "trigger-common#/definitions/commonFields" }, { "$ref": "common#/definitions/metadataFields" }, { "type": "object", "properties": { "_id": { "$ref": "common#/definitions/ObjectIdLikeString" } } } ] } } } } } } ] }