Summary
Creates a new template document.
Description
Creates a new template document.
Route
POST /automation-studio/templates
Roles
admin
apiwrite
designer
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
template |
object |
yes |
Template entity to create. |
Copied to Clipboard
{
"template": {
"name": "test",
"group": "Sample group",
"command": "show ip br",
"description": "description",
"template": "Value FIRST_WORD (S+)\n\nStart\n ^FIRST_WORD.* -> Record",
"data": "some sample text to match against",
"type": "test",
"_id": "a8Cd2974BCBa11b9dfc19f88",
"createdBy": "FBd2c98DaFD14bc55Cd43A4e",
"created": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": "bCC0AD44fDDEA1773E52bfC8",
"lastUpdated": "2019-11-25T22:51:39.201Z",
"version": 1,
"tags": [
{
"_id": "B4b97137cDFEbC005A9ab7AC",
"name": "magna"
}
]
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"template": {
"title": "template",
"$ref": "template"
}
},
"required": [
"template"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Created template and associated edit URI. |
Copied to Clipboard
{
"created": {
"name": "test",
"group": "Sample group",
"command": "show ip br",
"description": "description",
"template": "Value FIRST_WORD (S+)\n\nStart\n ^FIRST_WORD.* -> Record",
"data": "some sample text to match against",
"type": "test",
"_id": "7eBDcA5cee5B1C85ECa13C8C",
"createdBy": "f6ebd7Dd52Ee3FCFf3e3fCcb",
"created": "2019-11-25T22:51:39.201Z",
"lastUpdatedBy": "153C6e5baeadc3B44d3C2E66",
"lastUpdated": "2019-11-25T22:51:39.201Z",
"version": 1,
"tags": [
{
"_id": "AE054Bf7C01B41024b257eff",
"name": "aute"
},
{
"_id": "A8Fd3CEEDbaf6c859fd5bd78",
"name": "enim incididunt"
},
{
"_id": "eBcBA2Be314e786F2c4425c5",
"name": "ex est minim dolore nulla"
},
{
"_id": "f3d0a4EF367e51B8cA5DD330",
"name": "ex proident mollit incididunt"
}
]
},
"edit": "pariatur irure laboris magna ea"
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"description": "Created template and associated edit URI.",
"properties": {
"created": {
"$ref": "template"
},
"edit": {
"type": "string",
"description": "URI to the edit page for the newly created template."
}
},
"required": [
"created",
"edit"
]
}