Engine
Duplicate engine
This endpoint duplicates an existing engine configuration. You must specify name for the new engine. All the other attributes (and also engine fields) would be duplicated (except for agenda_id which will be generated).
post/api/v1/engines/{engineID}/duplicate
Path parameters
engineIDinteger required
ID of the engine
Request body
Example request
{
"name": "Duplicated Engine"
}Response
Created
Example response
{
"id": 3,
"url": "https://example.rossum.app/api/v1/engines/8",
"name": "Engine name",
"type": "extractor",
"learning_enabled": true,
"description": "AI engine trained to recognize data for the specific data capture requirement",
"agenda_id": "ross_a9d9vkl1",
"organization": "https://example.rossum.app/api/v1/organizations/406",
"training_queues": [
"https://example.rossum.app/api/v1/queues/8199",
"https://example.rossum.app/api/v1/queues/8236"
],
"settings": {
"use_case": "generic_ap"
}
}