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": [
"aliqua laborum incididunt",
"incididunt dolor",
"elit dolor aliqua",
"sed",
"in sunt"
],
"members": [
{
"path": "veniam aliqua cillum sed ut",
"type": "component",
"sourceCollection": "eiusmod",
"ref": "dolore"
},
{
"path": [
"voluptate fugiat anim",
"pariatur commodo velit sunt",
"sint tempor quis in laborum"
],
"type": "folder"
}
],
"_id": "BbBd7415E5Bf04b516ec2271",
"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": [
"cupidatat in",
"nisi exercitation dolor",
"amet non in id eiusmod"
],
"members": [
{
"path": "veniam ex sit",
"type": "component",
"sourceCollection": "consectetur amet aute in minim",
"ref": "laboris in sed laborum"
},
{
"path": "ad anim et",
"type": "component",
"sourceCollection": "occaecat in",
"ref": "mollit magna Duis proident"
},
{
"path": [
"incididunt et in"
],
"type": "folder"
},
{
"path": "in adipisicing",
"type": "component",
"sourceCollection": "ullamco sed",
"ref": "ut"
}
],
"_id": "FCBEA8Bc05915De8CFe8F3bD",
"description": "fugiat cillum do incididunt",
"gbacWrite": [
"dolore eu ad minim"
],
"version": 1
},
"edit": "sunt ut"
}
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"
]
}