{
"type": "object",
"properties": {
"automation": {
"title": "automation",
"properties": {
"id": {
"type": "string",
"description": "The id of the automation to clone",
"schema": {
"title": "id",
"$ref": "common-ops-schema#/definitions/ObjectId"
}
},
"name": {
"description": "An optional name to use for the cloned automation",
"oneOf": [
{
"type": "null"
},
{
"$ref": "common-ops-schema#/definitions/ObjectId"
}
]
}
}
}
},
"required": [
"automation"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name
Type
Description
result
object
The cloned automation
Copied to Clipboard
{
"status": "Created",
"message": "anim in dolore",
"data": {
"_id": "5cb7b531d06cceb89fd21b1c",
"name": "My document",
"description": "A description of an automation.",
"componentType": "workflows",
"created": "2019-04-16T00:43:22.038Z",
"lastUpdated": "2019-04-16T00:43:22.038Z",
"gbac": {
"write": [
"4321abcdef694aa79dae47ad",
"5cb7b531d06cceb89fd21b1c",
"4321abcdef694aa79dae47ad"
],
"read": [
"4321abcdef694aa79dae47ad",
"4321abcdef694aa79dae47ad",
"5cb7b531d06cceb89fd21b1c",
"5cb7b531d06cceb89fd21b1c",
"4321abcdef694aa79dae47ad"
]
},
"createdBy": "sed Ut",
"lastUpdatedBy": "officia aliqua nostrud",
"componentName": "ex adipisicing esse anim ipsum",
"componentId": null
}
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "The status of the API request.",
"enum": [
"Created"
]
},
"message": {
"type": "string",
"description": "Message containing either confirmation of the operation or the reason for the failure of the operation."
},
"data": {
"$ref": "automation-api"
}
}
}