---
title: "Get Member by ID"
slug: "get-member-by-id"
updated: 2026-02-25T13:56:58Z
published: 2026-02-25T13:57:17Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wasabi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Member by ID

Get/v1/members/{memberId}

Read a specific member by ID.

SecurityHTTPType basic

HTTP Basic Authentication using your WACM username and API key.

For detailed authentication instructions, see the [Authentication Guide](https://docs.wasabi.com/apidocs/wacm-connect-api-authentication).

Path parametersmemberIdintegerRequired

Member ID

Responses200

Successfully retrieved member

<select class='api-response-data' aria-label='Media type'><option value='3d5578c7-ca4c-46ac-a762-9fd169027f69'>application/json</option>
</select>

```json
{
  "success": "True",
  "data": {
    "id": "11223",
    "subAccountId": "54321",
    "firstName": "Jane",
    "lastName": "Smith",
    "username": "jsmith",
    "memberRole": "Admin",
    "email": "jane.smith@example.com",
    "status": "Active",
    "mfa": "True",
    "imageUrl": "",
    "creationDate": "2023-06-15T14:30:00Z",
    "address1": "456 Oak Ave",
    "address2": "",
    "country": "United States",
    "city": "New York",
    "stateName": "New York",
    "zip": "10001",
    "phone": "+1-555-987-6543",
    "isSsoUser": "False"
  }
}
```

Expand Allobject  successboolean    
dataobject (MemberResponse)  idinteger    
subAccountIdinteger    
firstNamestring    
lastNamestring    
usernamestring    
memberRolestring    
emailstring    
statusstring    
mfaboolean    
imageUrlstring   | null  
creationDatestring  (date-time)    
address1string   | null  
address2string   | null  
countrystring   | null  
citystring   | null  
stateNamestring   | null  
zipstring   | null  
phonestring   | null  
isSsoUserboolean
