curl --request GET \
--url https://app2.freyavoice.ai/api/v2/workspaces/members \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"members": [
{
"userId": "<string>",
"role": "<string>",
"joinedAt": "<string>",
"displayName": "<string>",
"username": "<string>",
"email": "<string>",
"avatarUrl": "<string>"
}
]
}
}
}Returns all members of the specified workspace with their roles.
curl --request GET \
--url https://app2.freyavoice.ai/api/v2/workspaces/members \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"members": [
{
"userId": "<string>",
"role": "<string>",
"joinedAt": "<string>",
"displayName": "<string>",
"username": "<string>",
"email": "<string>",
"avatarUrl": "<string>"
}
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Workspace ID