Return all the emails for a specified lead
GET /leads/:lead_id/emails
|
lead_id
|
Unique identifier of the lead
|
Required
|
page
|
Page number of emails to return. Returns empty array if the page has no emails. If page parameter isn't present, returns the first page
|
Optional
|
size
|
Number of emails to return in a page. If size parameter isn't present, returns the page with 25 emails
|
Optional
|
[
{
"_id": "521f26edcce8b4310e000077",
"from": "Foo Guy <[email protected]>",
"subject": "Add Foo clause to contract",
"body_plain": "[Sample] Body"
}
]