Skip to content

Set LockpathGroup

Robert Klohr edited this page Nov 12, 2020 · 1 revision

Set-LockpathGroup

Setting any attribute, including those with multiple values, overwrites the attribute with the new value.

If the property is an array and multiple values are passed in the API request then only those that do not result in an error are updated. If all values result in an error then that property is not changed, no error is indicated and the API response is GetGroup. This means that when updating an array property only way to check for success is to compare the API request to the API response and see if the intended changes were applied successfully.

Read Only Properties

SecurityRoles

Partially Updatable Properties

BusinessUnit: true (once set to true it cannot be changed back to false)

Fully Updatable Properties

Name Description Users ChildGroups ParentGroups

{
  "Id": 11,
    "Name": "API Group Name",
    "Description": "API group test",
    "BusinessUnit": true,
    "ChildGroups": [
        {
            "Id": 10000
        }
    ],
  "ParentGroups": [
        {
            "Id": 12
        }
    ],
    "Users": [
        {
            "Id": "6"
        }
    ]
}
Clone this wiki locally