GET
/
api
/
{projectId}
/
emails
List emails
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/emails \
  --header 'x-api-key: <api-key>'
{
  "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>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Response

200 - application/json

OK

The response is of type object.