Summary
Creates a new component group document.
Description
Creates a new component group document.
Route
POST /automation-studio/component-groups
Roles
admin
apiwrite
designer
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
componentGroup |
object |
yes |
Component group entity to create. |
Copied to Clipboard
{
"componentGroup": {
"name": "test",
"gbacRead": [
"velit",
"amet eiusmod ea",
"nostrud ut labore do"
],
"members": [],
"_id": "deE4EDcebab98caE7b65eBaf",
"description": "nulla incididunt Ut",
"gbacWrite": [
"aliquip ad non laboris occaecat"
],
"version": 1
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"componentGroup": {
"title": "componentGroup",
"$ref": "componentGroup"
}
},
"required": [
"componentGroup"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Created component group and associated edit URI. |
Copied to Clipboard
{
"created": {
"name": "test",
"gbacRead": [
"occaecat consequat irure fugiat in"
],
"members": [],
"_id": "e9a0Eb1c7673D605812FbfA4",
"description": "incididunt",
"gbacWrite": [
"sunt reprehenderit",
"incididunt nostrud adipisicing Excepteur ut",
"amet in ea"
],
"version": 1
},
"edit": "nulla"
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"description": "Created component group and associated edit URI.",
"properties": {
"created": {
"$ref": "componentGroup"
},
"edit": {
"type": "string",
"description": "URI to the edit page for the newly created component group."
}
},
"required": [
"created",
"edit"
]
}