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": [
"ullamco",
"eu nisi nostrud labore",
"id",
"sunt mollit aliqua"
],
"members": [],
"_id": "5fEf8A7eE4afEf112ecdfE8d",
"description": "amet culpa",
"gbacWrite": [
"officia",
"enim sint cupidatat labore"
],
"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": [
"voluptate veniam eu pariatur",
"amet ad",
"deserunt labore anim officia",
"cillum sit"
],
"members": [],
"_id": "F6BeeaAcCAe238E14739689e",
"description": "eiusmod est Excepteur in",
"gbacWrite": [
"eiusmod minim esse sit ex",
"dolore fugiat dolor aute pariatur"
],
"version": 1
},
"edit": "sit nulla in velit"
}
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"
]
}