List emails
Get a list of all emails sent by Edge Impulse to a user. This function is only available through a JWT token, and is not available for all users.
Path parameters
userIdintegerRequired
User ID
Responses
200
OK
application/json
Responseall of
get
GET /v1/api/users/{userId}/emails HTTP/1.1
Host: studio.edgeimpulse.com
Accept: */*
200
OK
{
"success": true,
"error": "text",
"emails": [
{
"userId": 1,
"projectId": 1,
"from": "text",
"to": "text",
"created": "2025-07-04T01:10:56.990Z",
"subject": "text",
"bodyText": "text",
"bodyHTML": "text",
"sent": true,
"providerResponse": "text"
}
]
}
Last updated
Was this helpful?