Querying Whether a User Is a Member of a Group
Function
This API is used to query whether a user is a member of a group based on the user ID and group ID list. It can be called only from the organization's management account or from a delegated administrator account of a cloud service.
URI
POST /v1/identity-stores/{identity_store_id}/is-member-in-groups
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| identity_store_id | Yes | String | Globally unique ID of an identity source. Minimum length: 12 Maximum length: 12 |
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| X-Security-Token | No | String | Security token (session token) of your temporary security credentials. If a temporary security credential is used, this header is required. Maximum length: 2048 |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| group_ids | Yes | Array of strings | Group ID list. Minimum length: 1 Maximum length: 47 Array length: 1-100 |
| Yes | Object | Group member ID. |
Response Parameters
Status code: 200
| Parameter | Type | Description |
|---|---|---|
| Array of objects | Result list, which indicates whether a user is in a group. Array length: 1-100 |
| Parameter | Type | Description |
|---|---|---|
| group_id | String | Globally unique ID of an IAM Identity Center group in the identity source. Minimum length: 1 Maximum length: 47 |
| Object | Group member ID. | |
| membership_exists | Boolean | Whether a user is in a group. |
| Parameter | Type | Description |
|---|---|---|
| user_id | String | Globally unique ID of an IAM Identity Center user in the identity source. Minimum length: 1 Maximum length: 47 |
Status code: 400
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Error code. |
| error_msg | String | Error message. |
| request_id | String | Request ID. |
Status code: 403
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Error code. |
| error_msg | String | Error message. |
| request_id | String | Request ID. |
| encoded_authorization_message | String | Encrypted error message. |
Status code: 404
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Error code. |
| error_msg | String | Error message. |
| request_id | String | Request ID. |
Example Request
Querying whether a user is a member of a group based on the user ID and group ID list
POST https://{hostname}/v1/identity-stores/{identity_store_id}/is-member-in-groups
{
"group_ids" : [ "0efaa0db-6aa4-7aaa-6aa5-c222aaaaf31a" ],
"member_id" : {
"user_id" : "ac6aa714-daa7-1aaa-aaa2-6715aaaa4dd9"
}
} Example Response
Status code: 200
Successful
{
"results" : [ {
"group_id" : "0efaa0db-6aa4-7aaa-6aa5-c222aaaaf31a",
"member_id" : {
"user_id" : "ac6aa714-daa7-1aaa-aaa2-6715aaaa4dd9"
},
"membership_exists" : true
} ]
} Status Codes
For details, see Status Codes.
Error Codes
For details, see Error Codes.