

# GetMembers
<a name="API_GetMembers"></a>

Returns the membership details for specified member accounts for a behavior graph.

## Request Syntax
<a name="API_GetMembers_RequestSyntax"></a>

```
POST /graph/members/get HTTP/1.1
Content-type: application/json

{
   "AccountIds": [ "string" ],
   "GraphArn": "string"
}
```

## URI Request Parameters
<a name="API_GetMembers_RequestParameters"></a>

The request does not use any URI parameters.

## Request Body
<a name="API_GetMembers_RequestBody"></a>

The request accepts the following data in JSON format.

 ** [AccountIds](#API_GetMembers_RequestSyntax) **   <a name="detective-GetMembers-request-AccountIds"></a>
The list of AWS account identifiers for the member account for which to return member details. You can request details for up to 50 member accounts at a time.  
You cannot use `GetMembers` to retrieve information about member accounts that were removed from the behavior graph.  
Type: Array of strings  
Array Members: Minimum number of 1 item. Maximum number of 50 items.  
Length Constraints: Fixed length of 12.  
Pattern: `^[0-9]+$`   
Required: Yes

 ** [GraphArn](#API_GetMembers_RequestSyntax) **   <a name="detective-GetMembers-request-GraphArn"></a>
The ARN of the behavior graph for which to request the member details.  
Type: String  
Pattern: `^arn:aws[-\w]{0,10}?:detective:[-\w]{2,20}?:\d{12}?:graph:[abcdef\d]{32}?$`   
Required: Yes

## Response Syntax
<a name="API_GetMembers_ResponseSyntax"></a>

```
HTTP/1.1 200
Content-type: application/json

{
   "MemberDetails": [ 
      { 
         "AccountId": "string",
         "AdministratorId": "string",
         "DatasourcePackageIngestStates": { 
            "string" : "string" 
         },
         "DisabledReason": "string",
         "EmailAddress": "string",
         "GraphArn": "string",
         "InvitationType": "string",
         "InvitedTime": "string",
         "MasterId": "string",
         "PercentOfGraphUtilization": number,
         "PercentOfGraphUtilizationUpdatedTime": "string",
         "Status": "string",
         "UpdatedTime": "string",
         "VolumeUsageByDatasourcePackage": { 
            "string" : { 
               "VolumeUsageInBytes": number,
               "VolumeUsageUpdateTime": "string"
            }
         },
         "VolumeUsageInBytes": number,
         "VolumeUsageUpdatedTime": "string"
      }
   ],
   "UnprocessedAccounts": [ 
      { 
         "AccountId": "string",
         "Reason": "string"
      }
   ]
}
```

## Response Elements
<a name="API_GetMembers_ResponseElements"></a>

If the action is successful, the service sends back an HTTP 200 response.

The following data is returned in JSON format by the service.

 ** [MemberDetails](#API_GetMembers_ResponseSyntax) **   <a name="detective-GetMembers-response-MemberDetails"></a>
The member account details that Detective is returning in response to the request.  
Type: Array of [MemberDetail](API_MemberDetail.md) objects

 ** [UnprocessedAccounts](#API_GetMembers_ResponseSyntax) **   <a name="detective-GetMembers-response-UnprocessedAccounts"></a>
The requested member accounts for which Detective was unable to return member details.  
For each account, provides the reason why the request could not be processed.  
Type: Array of [UnprocessedAccount](API_UnprocessedAccount.md) objects

## Errors
<a name="API_GetMembers_Errors"></a>

For information about the errors that are common to all actions, see [Common Error Types](CommonErrors.md).

 ** AccessDeniedException **   
The request issuer does not have permission to access this resource or perform this operation.    
 ** ErrorCode **   
The SDK default error code associated with the access denied exception.  
 ** ErrorCodeReason **   
The SDK default explanation of why access was denied.  
 ** SubErrorCode **   
The error code associated with the access denied exception.  
 ** SubErrorCodeReason **   
 An explanation of why access was denied.
HTTP Status Code: 403

 ** InternalServerException **   
The request was valid but failed because of a problem with the service.  
HTTP Status Code: 500

 ** ResourceNotFoundException **   
The request refers to a nonexistent resource.  
HTTP Status Code: 404

 ** ValidationException **   
The request parameters are invalid.    
 ** ErrorCode **   
The error code associated with the validation failure.  
 ** ErrorCodeReason **   
 An explanation of why validation failed.
HTTP Status Code: 400

## Examples
<a name="API_GetMembers_Examples"></a>

### Example
<a name="API_GetMembers_Example_1"></a>

This example illustrates one usage of GetMembers.

#### Sample Request
<a name="API_GetMembers_Example_1_Request"></a>

```
POST /graph/members/get HTTP/1.1
Host: api.detective.us-west-2.amazonaws.com
Accept-Encoding: identity
Content-Length: 128
Authorization: AUTHPARAMS
X-Amz-Date: 20200127T193018Z
User-Agent: aws-cli/1.14.29 Python/2.7.9 Windows/8 botocore/1.8.33

{
 "AccountIds": [ "444455556666" ],
 "GraphArn": "arn:aws:detective:us-east-1:111122223333:graph:027c7c4610ea4aacaf0b883093cab899"
}
```

### Example
<a name="API_GetMembers_Example_2"></a>

This example illustrates one usage of GetMembers.

#### Sample Response
<a name="API_GetMembers_Example_2_Response"></a>

```
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 332
Date: Mon, 27 Jan 2020 23:07:46 GMT
x-amzn-RequestId: 397d0549-0092-11e8-a0ee-a7f9aa6e7572
Connection: Keep-alive

{
 "MemberDetails": [ 
 { 
  "AccountId": "444455556666",
  "AdministratorId": "111122223333",
  "EmailAddress": "mmajor@example.com",
  "GraphArn": "arn:aws:detective:us-east-1:111122223333:graph:027c7c4610ea4aacaf0b883093cab899",
  "InvitedTime": "2020-01-24T12:35:0.1587Z",
  "MasterId": "111122223333",
  "Status": "INVITED",
  "UpdatedTime": "2020-01-24T12:35:0.1587Z"
 }
 ],
 "UnprocessedAccounts": [ ]
}
```

## See Also
<a name="API_GetMembers_SeeAlso"></a>

For more information about using this API in one of the language-specific AWS SDKs, see the following:
+  [AWS Command Line Interface V2](https://docs.aws.amazon.com/goto/cli2/detective-2018-10-26/GetMembers) 
+  [AWS SDK for .NET V4](https://docs.aws.amazon.com/goto/DotNetSDKV4/detective-2018-10-26/GetMembers) 
+  [AWS SDK for C\$1\$1](https://docs.aws.amazon.com/goto/SdkForCpp/detective-2018-10-26/GetMembers) 
+  [AWS SDK for Go v2](https://docs.aws.amazon.com/goto/SdkForGoV2/detective-2018-10-26/GetMembers) 
+  [AWS SDK for Java V2](https://docs.aws.amazon.com/goto/SdkForJavaV2/detective-2018-10-26/GetMembers) 
+  [AWS SDK for JavaScript V3](https://docs.aws.amazon.com/goto/SdkForJavaScriptV3/detective-2018-10-26/GetMembers) 
+  [AWS SDK for Kotlin](https://docs.aws.amazon.com/goto/SdkForKotlin/detective-2018-10-26/GetMembers) 
+  [AWS SDK for PHP V3](https://docs.aws.amazon.com/goto/SdkForPHPV3/detective-2018-10-26/GetMembers) 
+  [AWS SDK for Python](https://docs.aws.amazon.com/goto/boto3/detective-2018-10-26/GetMembers) 
+  [AWS SDK for Ruby V3](https://docs.aws.amazon.com/goto/SdkForRubyV3/detective-2018-10-26/GetMembers) 