Summary
Replaces a component group document.
Description
Replaces a component group document.
Route
PUT /automation-studio/component-groups/:id
Roles
admin
apiwrite
designer
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
id |
string |
yes |
Component group id. |
update |
object |
yes |
Complete component group definition to replace the existing component group document with. May not contain field '_id'. |
Copied to Clipboard
{
"update": {
"name": "test",
"gbacRead": [
"aliquip ad id reprehenderit",
"irure mollit ut",
"esse ullamco adipisicing in"
],
"members": [
{
"path": [
"ex nostrud culpa veniam",
"consectetur",
"sint Excepteur est laborum elit",
"ut in elit reprehenderit",
"tempor sint"
],
"type": "folder"
},
{
"path": [
"irure",
"sit",
"in",
"dolore"
],
"type": "folder"
}
],
"_id": "a1eC0E69BdEbf7e2A7C8aADc",
"version": 1
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"update": {
"title": "update",
"description": "Complete component group definition to replace the existing component group document with. May not contain field '_id'.",
"$ref": "componentGroupUpdate"
}
},
"required": [
"update"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
object |
Response object. |
Copied to Clipboard
{
"updated": {
"name": "test",
"gbacRead": [
"in",
"et do ut"
],
"members": [
{
"path": "voluptate cillum",
"type": "component",
"sourceCollection": "sed Excepteur",
"ref": "eu exercitation veniam"
},
{
"path": [
"enim adipisicing officia voluptate",
"Excepteur labore"
],
"type": "folder"
},
{
"path": "aliqua voluptate sit veniam cillum",
"type": "component",
"sourceCollection": "anim pariatur officia enim",
"ref": "in labore magna eiusmod proident"
},
{
"path": [
"minim dolor Ut"
],
"type": "folder"
},
{
"path": "velit tempor",
"type": "component",
"sourceCollection": "aute quis in",
"ref": "aliqua nulla minim non"
}
],
"_id": "A2fDF630bf6d4c4E6eee5432",
"description": "magna cupidatat deserunt",
"gbacWrite": [
"aliqua dolor"
],
"version": 1
},
"edit": "labore aliquip eiusmod consectetur"
}
Copied to Clipboard
{
"title": "response",
"type": "object",
"properties": {
"updated": {
"description": "Component group document after applying the update.",
"$ref": "componentGroup"
},
"edit": {
"type": "string",
"description": "URI to the edit page for the updated component group."
}
},
"required": [
"updated",
"edit"
]
}