GET
/
api
/
v1
/
workspace-members
/
{memberId}
Get Workspace Member By ID
curl --request GET \
  --url https://api.zixflow.com/api/v1/workspace-members/{memberId} \
  --header 'Authorization: Bearer <token>'
{   
    "status": true,
    "message": "Workspace member fetched successfully!",
    "data": {
      "workspaceId": "652e5068c33fe13b6ba00fd7",
      "userId": "652e5068c33fe1cd1da00fda",
      "avatar": "",
      "fullName": "User Name",
      "email": "user@zixflow.com",
      "phone": "9190909090",
      "userType": "OWNER",
      "userStatus": "ACTIVE",
      "timezone": "Asia/Kolkata",
      "deactivated": false
    }
}

Path Params

memberId
string
required
The unique identifier of the member, allowing for precise referencing.

API Response Description:

status
boolean
Indicates the success or failure of the workspace member retrieval. In this case, true signifies a successful operation.
message
string
Provides a human-readable message accompanying the response. In this instance, it confirms the successful retrieval of the workspace member with the message “Workspace member fetched successfully!”
data
object
Detailed information about the selected workspace member:
{   
    "status": true,
    "message": "Workspace member fetched successfully!",
    "data": {
      "workspaceId": "652e5068c33fe13b6ba00fd7",
      "userId": "652e5068c33fe1cd1da00fda",
      "avatar": "",
      "fullName": "User Name",
      "email": "user@zixflow.com",
      "phone": "9190909090",
      "userType": "OWNER",
      "userStatus": "ACTIVE",
      "timezone": "Asia/Kolkata",
      "deactivated": false
    }
}