Removes a user from the specified workspace
User removed from workspace successfully
Adds a user to the specified workspace with a role
User added to workspace successfully
Retrieves all users in the specified workspace
Users retrieved successfully
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/users?userEmail=text', { method: 'DELETE', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/users?userEmail=text&role=OWNER', { method: 'POST', headers: {}, }); const data = await response.json();
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/users', { method: 'GET', headers: {}, }); const data = await response.json();
text