EntityEmail Log

Get email log

GET
Get email log

Path parameters

entityIdstringRequired
logIdstringRequired

Response

This endpoint returns an object
id
string
subject
string
from
string
to
string
htmlBody
string
textBody
string
createdAt
datetime
invoiceId
stringOptional
GET
1curl https://api.mercoa.com/entity/:entityId/emailLog/:logId \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "id": "string",
3 "subject": "string",
4 "from": "string",
5 "to": "string",
6 "htmlBody": "string",
7 "textBody": "string",
8 "createdAt": "2023-01-01T00:00:00Z",
9 "invoiceId": "string"
10}