Loading...
Remove a member from an organization. Note that you cannot invoke this function if only a single member is present to the organization.
Organization ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/members/remove', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "id": 0 }), }); const data = await response.json();
{ "success": false, "error": "text" }