curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/user/emails
{
"success": true,
"error": "<string>",
"emails": [
{
"userId": 123,
"projectId": 123,
"from": "<string>",
"to": "<string>",
"created": "2023-11-07T05:31:56Z",
"subject": "<string>",
"bodyText": "<string>",
"bodyHTML": "<string>",
"sent": true,
"providerResponse": "<string>"
}
]
}
Get a list of all emails sent by Edge Impulse to the current user. This function is only available through a JWT token, and is not available for all users.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/user/emails
{
"success": true,
"error": "<string>",
"emails": [
{
"userId": 123,
"projectId": 123,
"from": "<string>",
"to": "<string>",
"created": "2023-11-07T05:31:56Z",
"subject": "<string>",
"bodyText": "<string>",
"bodyHTML": "<string>",
"sent": true,
"providerResponse": "<string>"
}
]
}
OK
The response is of type object
.