AWS Security ChangesHomeSearch

AWS singlesignon documentation change

Service: singlesignon · 2025-05-31 · Documentation low

File: singlesignon/latest/IdentityStoreAPIReference/API_IsMemberInGroups.md

Summary

Added examples section with sample request/response for IsMemberInGroups API operation and removed note about member account access

Security assessment

Adds membership check examples while removing security guidance. Changes appear focused on usability rather than security fixes.

Diff

diff --git a/singlesignon/latest/IdentityStoreAPIReference/API_IsMemberInGroups.md b/singlesignon/latest/IdentityStoreAPIReference/API_IsMemberInGroups.md
index 417e6803a..bf8f4103c 100644
--- a//singlesignon/latest/IdentityStoreAPIReference/API_IsMemberInGroups.md
+++ b//singlesignon/latest/IdentityStoreAPIReference/API_IsMemberInGroups.md
@@ -5 +5 @@
-Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also
+Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsExamplesSee Also
@@ -9,6 +8,0 @@ Request SyntaxRequest ParametersResponse SyntaxResponse ElementsErrorsSee Also
-Checks the user's membership in all requested groups and returns if the member exists in all queried groups.
-
-###### Note
-
-If you have access to a member account, you can use this API operation from the member account. For more information, see [Limiting access to the identity store from member accounts](https://docs.aws.amazon.com/singlesignon/latest/userguide/manage-your-accounts.html#limiting-access-from-member-accounts) in the _AWS IAM Identity Center User Guide_.
-
@@ -133,0 +128,35 @@ HTTP Status Code: 400
+## Examples
+
+### Example
+
+This example indicates that the specified user is a member of the specified group.
+
+#### Sample Request
+    
+    
+    {
+        "IdentityStoreId": "d-1234567890",
+        "MemberId": {
+            "UserId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"
+        },
+        "GroupIds": [
+            "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222"
+        ]
+    }
+    
+
+#### Sample Response
+    
+    
+    {
+        "Results": [
+            {
+                "GroupId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
+                "MemberId": {
+                    "UserId": "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"
+                },
+                "MembershipExists": true
+            }
+        ]
+    }
+