For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTAdd one or more components to project
        • POSTCreate a new component group document
        • POSTCreate a new project
        • POSTCreate a new template document
        • POSTCreate a new workflow document
        • DELDelete a component group document
        • DELDelete a project and any components it contains
        • DELDelete a template document
        • POSTDiscover referenced resources
        • GETExport a template document
        • GETExport project as JSON document
        • GETGet a list of all the apps and adapters
        • GETGet a page of component group documents
        • GETGet a page of template documents
        • GETGet a page of workflow documents
        • GETGet a project's thumbnail
        • GETGet component group document
        • GETGet details of a workflow
        • GETGet project
        • GETGet references to a particular document
        • GETGet task details
        • POSTGet task details
        • GETGet template document
        • POSTImport a new component group document
        • POSTImport a new template document
        • POSTImport a new workflow document
        • POSTImport a project document from a JSON document
        • GETList all available rest calls
        • DELRemove a component from a project
        • PUTReplace a component group document
        • PUTReplace a template document
        • PUTReplace a workflow document
        • GETSearch projects
        • PUTSet a project's thumbnail image
        • PATCHUpdate an existing project
        • POSTValidate a workflow
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceAutomation Studio

Import a new component group document

POST
http://localhost:3000/automation-studio/component-groups/import
POST
/automation-studio/component-groups/import
$curl -X POST http://localhost:3000/automation-studio/component-groups/import \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "imported": [
3 {
4 "message": "string",
5 "original": {
6 "name": "Assign Next IP - Infoblox",
7 "gbacRead": [
8 "CAcFAfEa9aCe7ba08d482B3F"
9 ],
10 "members": [
11 {
12 "path": [
13 "Assign Next IP - Infoblox"
14 ],
15 "type": "folder"
16 }
17 ],
18 "_id": "string",
19 "version": 1,
20 "meta": {}
21 },
22 "created": {
23 "name": "Infoblox Workflows",
24 "gbacRead": [
25 "CAcFAfEa9aCe7ba08d482B3F"
26 ],
27 "members": [
28 {
29 "path": [
30 "Assign Next IP - Infoblox"
31 ],
32 "type": "folder"
33 }
34 ],
35 "_id": "string",
36 "description": "Infoblox Workflows",
37 "gbacWrite": [
38 "CAcFAfEa9aCe7ba08d482B3F"
39 ],
40 "version": 1,
41 "meta": {}
42 },
43 "edit": "string",
44 "success": true
45 }
46 ]
47}
Imports a new component group document.
Was this page helpful?
Previous

Import a new template document

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Request

request body
componentGroupslist of objectsOptional

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.

Response

Results from each individual import operation.
importedlist of objects

Errors

500
Internal Server Error