---
title: "Update Member"
slug: "update-member"
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.

# Update Member

Put/v1/members/{memberId}

Update a 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

Body parameters<select class='api-response-data' aria-label='Media type'><option value='66ca116b-e3a9-45a2-b272-4dcb6ae9d117'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='2f6315ec-a236-410d-a25d-d4604b27a146'>updateName</option>
<option value='ac045fd4-d2a5-404e-a63b-32daff32fcae'>full</option>
<option value='720cdcfb-222d-4c2e-8f4f-f5ec19f7aeb7'>deactivate</option>
<option value='da7af573-188e-4301-8f50-5efba69ae968'>reinstate</option>
</select>updateName

Update name

```json
{
  "firstName": "Jane",
  "lastName": "Smith-Updated"
}
```

full

All fields

```json
{
  "firstName": "Jane",
  "lastName": "Smith-Updated",
  "username": "jsmith",
  "memberRole": "Admin",
  "password": "NewSecurePass123!",
  "mfa": "False",
  "active": "True",
  "reinstate": "False",
  "address1": "456 Oak Ave",
  "city": "New York",
  "country": "United States",
  "stateName": "New York",
  "zip": "10001",
  "phone": "+1-555-987-6543"
}
```

deactivate

Deactivate member

```json
{
  "active": "False"
}
```

reinstate

Reinstate member

```json
{
  "active": "True",
  "reinstate": "True"
}
```

object  firstNamestring    
lastNamestring    
usernamestring    
memberRolestring    
passwordstring    
mfaboolean    
activeboolean    
reinstateboolean    
address1string    
address2string    
countrystring    
citystring    
stateNamestring    
zipstring    
phonestring    

Responses200

Successfully updated member

<select class='api-response-data' aria-label='Media type'><option value='7013d21a-e6d8-4c3b-8d02-af81eabfa367'>application/json</option>
</select>

```json
{
  "success": "True",
  "code": "RES-I-0036",
  "message": "Member has been successfully updated!",
  "data": {
    "id": "11223",
    "subAccountId": "54321",
    "firstName": "Jane",
    "lastName": "Smith-Updated",
    "username": "jsmith",
    "memberRole": "Admin",
    "email": "jane.smith@example.com",
    "status": "Active",
    "mfa": "True",
    "imageUrl": "",
    "creationDate": "2023-06-15T14:30:00Z",
    "address1": "",
    "address2": "",
    "country": "",
    "city": "",
    "stateName": "",
    "zip": "",
    "phone": "",
    "isSsoUser": "False"
  }
}
```

Expand Allobject  successboolean    
codestring    
messagestring    
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
