Last updated 7 months ago
Set the datasets a guest member has access to in an organization.
Organization ID
Member 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/{memberId}/datasets', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "datasets": [ "text" ] }), }); const data = await response.json();
{ "success": false, "error": "text" }