# Get member's personal settings for a group Retrieves the current member's personal settings within the specified group. Returns a JSON object with setting keys mapped to their values. Members can only access their own settings and must be active members of the group. Settings control member-specific preferences like notification preferences, display options, and personal configurations within the group context. Endpoint: GET /api/v1/groups/{groupId}/member-settings Version: 1.0 Security: ## Query parameters: - `keys` (array, required) Comma-separated list of setting keys to retrieve. Keys must be valid group member setting identifiers. Available keys are: group.member.display group.member.preferences Example: "group.member.display,group.member.preferences" ## Path parameters: - `groupId` (string, required) The unique identifier of the group Example: "us_01hxcvk1hjexere4pvtrj0ymqq" ## Response 200 fields (application/json): - `group.member.display` (object) - `group.member.display.customDisplayName` (string) - `group.member.display.showActivity` (boolean) - `group.member.display.showInMemberList` (boolean) - `group.member.display.showJoinDate` (boolean) - `group.member.preferences` (object) - `group.member.preferences.emailNotifications` (boolean) - `group.member.preferences.notificationFrequency` (string) - `group.member.preferences.notifications` (boolean) ## Response 400 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 401 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 404 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation