Summary
Create Automation
Description
Create a new Automation.
Route
POST /operations-manager/automations
Roles
admin
apiwrite
engineering
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| automation |
object |
yes |
The details of the Automation document to be created. |
Copied to Clipboard
{
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"componentType": "workflows",
"gbac": {
"write": [
"53614cd8f13ac2f552ffeb54",
"b1561bf6d7784f58e9ed203e",
"f40b9d7dc89e95db2228c19e"
],
"read": [
"3253a48dc3d1bc052b36c3ea"
]
},
"componentId": null
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| results |
object |
The result of the create operation. |
Copied to Clipboard
{
"message": "Successfully retrieved search results",
"data": {
"name": "myCoolDocumentName",
"description": "Some helpful information about the document",
"componentType": null,
"createdBy": "Pronghorn",
"created": "1997-10-09T01:14:52.011Z",
"lastUpdatedBy": "Pronghorn",
"lastUpdated": "1996-09-18T16:03:32.875Z",
"_id": "01ee4ca33bb23106b3c7da24",
"gbac": {
"write": [
"210a3fa277246b2adb47988f",
"2a3eeb70a46ba1ce9c59fb2f",
"2e89efc0e89477989e82d29b"
],
"read": [
"cbb5ebb4b50f89af8afb45fd",
"84f3461a12d13c6d30143221",
"2431e410d8484e1ae547aff9",
"5d406b7e1063826ce973ae5b"
]
},
"componentId": null
}
}