Skip to main content
GET
/
inbox
/
message
/
:messageId
Message Detail
curl --request GET \
  --url https://api-prod.syntr.co/api/v1/email-marketing/inbox/message/:messageId \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "id": "msg_123",
    "subject": "Re: Your Pitch",
    "body": "I would love to learn more...",
    "from": {
      "name": "John Doe",
      "email": "john@doe.com"
    }
  }
}

URL Parameters

senderId
UUID
required
REQUIRED. The ID of the sender identity.
mailboxId
STRING
Optional mailbox ID for WildDuck identities.
{
  "success": true,
  "data": {
    "id": "msg_123",
    "subject": "Re: Your Pitch",
    "body": "I would love to learn more...",
    "from": {
      "name": "John Doe",
      "email": "john@doe.com"
    }
  }
}