Loading...
Invite a member to an organization.
Organization ID
E-mail address
Only used for 'guest' users. Limits the datasets the user has access to.
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/invite', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "email": "text", "role": "admin", "datasets": [ "text" ] }), }); const data = await response.json();
{ "success": false, "error": "text" }