Workspace Members
Get List of Workspace Members
This endpoint returns all worksapce member details
GET
/
api
/
v1
/
workspace-members
Authorization
curl --request GET \
--url https://api.zixflow.com/api/v1/workspace-members \
--header 'Authorization: <authorization>'
{
"status": true,
"message": "Workspace members 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
}
]
}
API Response Description:
status
boolean
Indicates the success or failure of the workspace members 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 members with the message “Workspace members fetched successfully!”
data
array_object
An array containing details of the available workspace members. For each member in the data array:
curl --request GET \
--url https://api.zixflow.com/api/v1/workspace-members \
--header 'Authorization: <authorization>'
{
"status": true,
"message": "Workspace members 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
}
]
}