GET /v1/emails/{id}/body
The body is stored separately from the message summary, so retrieving it is its own call. For an outbound message you get the message exactly as it was sent; for an inbound message you get the parsed body as received.
Path parameters
The message id.
Request
Response
200 OK — the rendered { html, text }. Either field may be null if that part wasn’t sent.
200 OK
Fields
The rendered HTML body, or
null if the message was text-only.The rendered plain-text body, or
null if the message was HTML-only.Attachments are separate. This endpoint returns only the rendered text. List a message’s files with
GET /v1/emails/{id}/attachments and download each from its url.