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": [
"minim nisi in",
"esse laboris ex occaecat dolor",
"officia commodo"
],
"members": [],
"_id": "a8248Be5AeC717eABEC152Fb",
"description": "ut nostrud",
"gbacWrite": [
"dolor sint",
"esse id",
"tempor"
],
"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": [
"dolore consectetur ad"
],
"members": [],
"_id": "ebB68dE04c85a1350aEcCCCe",
"description": "id quis cupidatat fugiat",
"gbacWrite": [
"magna eiusmod labore",
"commodo labore",
"aliqua Excepteur Duis",
"dolore veniam proident id"
],
"version": 1
},
"edit": "elit sed ad"
}
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"
]
}