# Update Group PATCH /{groupId} #### Description Updates the details of an existing group, allowing changes to its name, description, or membership configuration. Endpoint: PATCH /{groupId} Version: 1.0 Security: oauth2 ## Path parameters: - `groupId` (string, required) Unique ID of the group to update. ## Request fields (application/json): - `name` (string) The name of the group. Example: "Compliance Managers" - `groupLeadId` (string) The unique identifier of the user who is designated as the group lead. Example: "abcdef12-3456-7890-abcd-ef1234567890" - `clearGroupLead` (boolean) Clears the group lead if 'true'. If set, groupLeadId must not be set. ## Response 200 fields (application/json): - `id` (string) The unique identifier for the group. Example: "abcdef12-3456-7890-abcd-ef1234567890" - `orgId` (string) The unique identifier for the organization the group belongs to. Example: "12345678-1234-5678-1234-123456789012" - `name` (string) The name of the group. Example: "Compliance Managers" - `groupLeadId` (string) The unique identifier of the user who is designated as the group lead. Example: "876654321-1234-5678-8765-123456789012" - `userIds` (array) The list of unique identifiers of users who are in the group. - `createdOn` (string) The date and time the group was created (ISO-8601 format). Example: "2023-01-01T00:00:00Z" - `updatedOn` (string) The date and time the group was last updated (ISO-8601 format). Example: "2023-01-01T00:00:00Z"