Passo Developers
Api

List a workspace's members

GET
/workspaces/{workspaceId}/members

Returns the members of the workspace — name, avatar, email, role and joined date. The caller must be a member; a non-member receives an empty list. total is the row count.

Authorization

oauthJwt
AuthorizationBearer <token>

A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.

In: header

Path Parameters

workspaceId*string
Formatuuid

Response Body

application/json

curl -X GET "https://example.com/workspaces/497f6eca-6276-4993-bfeb-53cbbbba6f08/members"
{  "members": [    {      "userId": "string",      "displayName": "string",      "avatarUrl": "string",      "email": "string",      "role": "viewer",      "joinedAt": "string"    }  ],  "total": -9007199254740991}