List workspace members
GET/v1/account/workspaces/{workspaceId}/members
Lists the members of a workspace. Admin only.
List workspace members
curl https://api.cadenya.com/v1/account/workspaces/$WORKSPACE_ID/members \
-H "Authorization: Bearer $CADENYA_API_KEY"{
"items": [
{
"actorId": "actorId",
"profileId": "profileId",
"addedAt": "2019-12-27T18:11:19.117Z",
"email": "email",
"name": "name"
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}Returns Examples
{
"items": [
{
"actorId": "actorId",
"profileId": "profileId",
"addedAt": "2019-12-27T18:11:19.117Z",
"email": "email",
"name": "name"
}
],
"pagination": {
"nextCursor": "nextCursor",
"total": 0
}
}