# Modifies a user by replacing existing attributes with a specified set of replacement attributes (replace). Used to replace a resource's attributes. For example, clients that have previously retrieved the entire resource in advance and revised it may replace the resource using an HTTP PUT. Because SCIM resource identifiers are assigned by the service provider, HTTP be used to create new resources. > : As the operation's intent is to replace all attributes, SCIM clients may send all attributes, regardless of each attribute's mutability. Endpoint: PUT /scim/v2/Groups/{groupId} Version: latest Security: BearerAuth ## Path parameters: - `groupId` (string, required) The group ID. Example: "2819c223-7f76-453a-919d-413861904646" ## Request fields (application/json): - `schemas` (array, required) Example: ["urn:ietf:params:scim:schemas:core:2.0:Group"] - `id` (string) A unique identifier for a SCIM resource as defined by the service provider. Example: "2819c223-7f76-453a-919d-413861904646" - `externalId` (string) A String that is an identifier for the resource as defined by the provisioning client. - `displayName` (string, required) A human-readable name for the Group. Example: "Tour Guides" - `members` (array) A list of members of the Group. Example: [{"value":"92b725cd-9465-4e7d-8c16-01f8e146b87a","type":"User"}] - `members.value` (string) Value of an "id" attribute of a SCIM resource - `members.$ref` (any) The URI of a SCIM resource such as a "User", or a "Group" ## Response 200 fields (application/json): - `schemas` (array, required) Example: ["urn:ietf:params:scim:schemas:core:2.0:Group"] - `id` (string) A unique identifier for a SCIM resource as defined by the service provider. Example: "2819c223-7f76-453a-919d-413861904646" - `externalId` (string) A String that is an identifier for the resource as defined by the provisioning client. - `displayName` (string, required) A human-readable name for the Group. Example: "Tour Guides" - `members` (array) A list of members of the Group. Example: [{"value":"92b725cd-9465-4e7d-8c16-01f8e146b87a","ref":"https://example.com/v2/Users/92b725cd-9465-4e7d-8c16-01f8e146b87a","type":"User"}] - `members.value` (string) Value of an "id" attribute of a SCIM resource - `members.$ref` (any) The URI of a SCIM resource such as a "User", or a "Group" - `resourceType` (string) The name of the resource type of the resource. - `created` (string) The "DateTime" that the resource was added to the service provider. - `lastModified` (string) The most recent DateTime that the details of this resource were updated at the service provider. - `location` (string) The URI of the resource being returned. - `version` (string) The version of the resource being returned.