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

Create a new component group document

POST
http://localhost:3000/automation-studio/component-groups
POST
/automation-studio/component-groups
$curl -X POST http://localhost:3000/automation-studio/component-groups \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "created": {
3 "name": "Infoblox Workflows",
4 "gbacRead": [
5 "CAcFAfEa9aCe7ba08d482B3F"
6 ],
7 "members": [
8 {
9 "path": [
10 "Assign Next IP - Infoblox"
11 ],
12 "type": "folder"
13 }
14 ],
15 "_id": "string",
16 "description": "Infoblox Workflows",
17 "gbacWrite": [
18 "CAcFAfEa9aCe7ba08d482B3F"
19 ],
20 "version": 1,
21 "meta": {}
22 },
23 "edit": "string"
24}
Creates a new component group document.
Was this page helpful?
Previous

Create a new project

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
componentGroupobjectOptional
An entity representing a component group.

Response

Created component group and associated edit URI.
createdobject
An entity representing a component group.
editstring
URI to the edit page for the newly created component group.

Errors

500
Internal Server Error