Members
Update a member
Update an existing workspace member.
If you are using a personal access token, you need to have an access level greater or equal to manager.
patch/v1/members/{member_id}
Path parameters
member_idinteger required
The id of the workspace member
Query parameters
send_emailboolean
Whether to notify the member about the update.
Request body
Example request
{
"id": 3252,
"name": "John Smith",
"email": "john.smith@example.org",
"active": true,
"created_at": "2023-06-28T16:40:26.897Z",
"last_login": "2023-06-28T16:40:26.897Z"
}Response
Workspace member details
Example response
{
"id": 3252,
"name": "John Smith",
"email": "john.smith@example.org",
"active": true,
"created_at": "2023-06-28T16:40:26.897Z",
"last_login": "2023-06-28T16:40:26.897Z"
}