Get a thread message's original body
GET
/v1/email/threads/{thread_id}/messages/{message_id}/body
const body = await bird.email.threads.messages.body("thr_01abc", "rem_01xyz");
console.log(body.text);body = client.email.threads.messages.body(
"thr_01krdgeqcxet5s7t44vh8rt9mg", "rem_01krdgeqcxet5s7t44vh8rt9mg",
)
print(body.html)body, err := client.Email.Threads.Messages.Body(context.Background(), "thr_123", "rem_456")
if err != nil {
log.Fatal(err)
}
fmt.Println(body.Text)$body = $bird->email->threads->messages->body(
'thr_01krdgeqcxet5s7t44vh8rt9mg',
'rem_01krdgeqcxet5s7t44vh8rt9mg',
);
echo $body->getText() ?? $body->getHtml();bird email threads messages body <thread-id> <message-id>curl -X GET "https://us1.platform.bird.com/v1/email/threads/{thread_id}/messages/{message_id}/body" \
-H "Authorization: Bearer $TOKEN"Returns the original rendered HTML and plain-text body of a message in a conversation. The original body is available for 30 days after the message occurred. Later requests return 410 Gone, while the message's extracted text stays readable on the message itself.
Parameters
thread_id
string
Thread identifier. Starts with thr_.
message_id
string
Message ID (rem_ for a received message, em_ for a sent one).
Response Payload
html
nullable string
verplicht
The HTML body of the message, or null when the message had no HTML part.
text
nullable string
verplicht
The plain-text body of the message, or null when the message had no text part.
Related resources
Continue with the documentation, guides and examples for this topic. Resources are in English.
Watch the guideGetting started with emailExplore the capabilityEmailFollow the learning pathBuild your first integrationImplementation guideSend your first email
Try the practice and get an implementation brief