Last updated 7 months ago
Get a list of all emails sent by Edge Impulse regarding this project.
Project ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
List of emails
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/emails', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "emails": [ { "from": "text", "to": "text", "created": "2024-11-21T09:04:29.436Z", "subject": "text", "bodyText": "text", "bodyHTML": "text", "sent": false, "providerResponse": "text" } ] }