Summary
Imports a new component group document.
Description
Imports a new component group document.
Route
POST /automation-studio/component-groups/import
Roles
Parameters
Name | Type | Required | Description |
---|---|---|---|
componentGroups | array | yes | ComponentGroups array. |
{ "componentGroups": [ { "name": "test", "gbacRead": [ "sed incididunt", "ex", "voluptate anim", "irure in culpa", "pariatur ipsum voluptate" ], "members": [ { "path": "esse elit", "type": "component", "sourceCollection": "aliqua qui sunt adipisicing est", "ref": "ex magna dolore exercitation sit" }, { "path": [ "Lorem mollit" ], "type": "folder" }, { "path": [ "nisi id et sunt exercitation", "exercitation velit reprehenderit", "tempor ad in" ], "type": "folder" }, { "path": [ "proident", "commodo labore proident consequat", "ut enim Duis" ], "type": "folder" }, { "path": [ "labore", "laborum eiusmod", "id in minim ad" ], "type": "folder" } ], "_id": "aF408aDF17e06a6aFfDc8BFc", "version": 1 }, { "name": "test", "gbacRead": [ "anim est", "pariatur velit occaecat nisi" ], "members": [ { "path": [ "aliqua adipisicing aliquip laboris" ], "type": "folder" } ], "_id": "eeF070E3189B6e932a8DDb28", "version": 1 }, { "name": "test", "gbacRead": [ "in mollit" ], "members": [ { "path": "exercitation consectetur dolore culpa", "type": "component", "sourceCollection": "cillum nulla irure consectetur", "ref": "Duis tempor sint magna exercitation" }, { "path": "ut", "type": "component", "sourceCollection": "fugiat nulla", "ref": "sint sunt" }, { "path": [ "ea veniam cupidatat et", "aliquip laboris pariatur sint", "id ea labore in velit", "proident consectetur", "eu" ], "type": "folder" }, { "path": [ "nisi eiusmod anim in sit", "cillum reprehenderit anim" ], "type": "folder" }, { "path": "aliqua occaecat adipisicing", "type": "component", "sourceCollection": "ex tempor qui et", "ref": "ad amet aute id" } ], "_id": "76B58a3D6a7eEC61Ed17EDAa", "version": 1 } ] }
{ "type": "object", "properties": { "componentGroups": { "title": "componentGroups", "description": "Array of component group documents to import. If '_id' is provided, it will be replaced with an autogenerated '_id'. If a component group's name is already used in the component groups collection, it will be renamed with a numeric suffix.", "type": "array", "items": { "$ref": "componentGroupImport" } } }, "required": [ "componentGroups" ], "additionalProperties": false }
Return
Name | Type | Description |
---|---|---|
response | object | Results from each individual import operation. |
{ "imported": [ { "message": "velit ex consectetur magna", "original": { "name": "test", "gbacRead": [ "Excepteur", "pariatur in culpa", "dolor amet" ], "members": [ { "path": "ut eiusmod", "type": "component", "sourceCollection": "ut sunt nisi consectetur", "ref": "qui nostrud labore est" }, { "path": [ "velit eu", "Duis Ut tempor eiusmod" ], "type": "folder" }, { "path": [ "fugiat velit", "velit", "commodo deserunt sunt", "ullamco reprehenderit enim dolore", "dolore sunt amet laborum" ], "type": "folder" } ], "_id": "1baAAd9aFEfCd757AeAAb2D1", "version": 1 }, "created": null, "edit": null, "success": false }, { "message": "commodo Ut ipsum ut laborum", "original": { "name": "test", "gbacRead": [ "officia eiusmod fugiat", "incididunt Duis labore", "id voluptate reprehenderit laboris Duis", "ullamco proident commodo deserunt aliqua", "incididunt" ], "members": [ { "path": [ "irure laborum ut", "sed in", "laboris et occaecat ut aute", "proident occaecat ullamco pariatur culpa", "Excepteur adipisicing ipsum labore eu" ], "type": "folder" }, { "path": [ "pariatur in ut", "ex elit" ], "type": "folder" }, { "path": "irure cillum ea", "type": "component", "sourceCollection": "sit enim Excepteur reprehenderit", "ref": "elit ex ullamco minim commodo" }, { "path": "in sunt sint aute enim", "type": "component", "sourceCollection": "labore ut et commodo ad", "ref": "occaecat dolore esse incididunt Excepteur" }, { "path": "in quis sed sint", "type": "component", "sourceCollection": "ex aliqua laborum Lorem est", "ref": "elit" } ], "_id": "cfc2CFAFe857B9F65Bb9A86F", "version": 1 }, "created": null, "edit": "Duis culpa ea", "success": false }, { "message": "dolor eiusmod minim", "original": { "name": "test", "gbacRead": [ "aliqua laboris amet mollit", "commodo", "fugiat elit consectetur laboris" ], "members": [ { "path": "in", "type": "component", "sourceCollection": "sed quis elit labore aute", "ref": "in non" }, { "path": "nulla sit dolore in", "type": "component", "sourceCollection": "eu enim cupidatat adipisicing in", "ref": "ullamco amet" }, { "path": [ "proident ea", "Ut est", "exercitation sit eu culpa dolore", "pariatur Ut", "ad dolor Duis id cupidatat" ], "type": "folder" }, { "path": [ "incididunt esse non culpa in", "reprehenderit sit in", "laborum in" ], "type": "folder" }, { "path": [ "et ad Excepteur consequat nisi", "minim et occaecat", "quis ut" ], "type": "folder" } ], "_id": "24cbD92b11e8fC2e7cF7060B", "version": 1 }, "created": null, "edit": "in dolor in", "success": true } ] }
{ "title": "response", "type": "object", "properties": { "imported": { "type": "array", "items": { "type": "object", "properties": { "success": { "type": "boolean", "description": "Status flag denoting the success (true) or failure (false) of the component group's import operation." }, "message": { "type": "string", "description": "Message containing either confirmation of the import operation or the reason for the failure of the import operation." }, "original": { "description": "The original component group given in the import array.", "$ref": "componentGroupImport" }, "created": { "description": "The imported component group as it exists after being imported.", "oneOf": [ { "$ref": "componentGroup" }, { "type": "null" } ] }, "edit": { "description": "URI to the edit page for the imported component group.", "oneOf": [ { "type": "string" }, { "type": "null" } ] } }, "required": [ "status", "message", "original", "created", "edit" ] } } } }