/
Manage workspace members, roles, and settings through the API.
List members of a workspace
slugstringrequiredWorkspace slug (URL path)searchstringSearch by name or emaillimitnumberNumber of members (max 100, default 50){
"members": [
{
"id": "usr_abc123",
"name": "Jane Smith",
"email": "jane@example.com",
"role": "admin",
"joinedAt": "2024-01-15T10:30:00Z"
}
],
"total": 42,
"hasMore": true
}Workspaces are the top-level container in Project Feed. Each API key is scoped to a single workspace. The workspace slug is used in the URL path to identify the workspace for member-related endpoints.
Members can have one of three roles: member, admin, or owner. The role determines which API operations the member can perform.