Request Information

URI Parameters

NameDescriptionTypeAdditional information
appId

The mail message identifier.

integer

None.

Body Parameters

None.

Response Information

Resource Description

A list of mail message bodies.

Collection of Nano.MailMessageBody
NameDescriptionTypeAdditional information
body

Gets or sets the body.

string

None.

isHTML

Gets or sets a value indicating whether this is HTML.

boolean

None.

id

Gets or sets the mail message body identifier.

integer

None.

mailMessage

Gets or sets the mail message identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "body": "sample String 1",
    "isHTML": true,
    "id": "3",
    "mailMessage": "4"
  },
  {
    "body": "sample String 1",
    "isHTML": true,
    "id": "3",
    "mailMessage": "4"
  }
]

text/html

Sample:
[{"body":"sample String 1","isHTML":true,"id":"3","mailMessage":"4"},{"body":"sample String 1","isHTML":true,"id":"3","mailMessage":"4"}]

application/xml, text/xml

Sample:
<ArrayOfMailMessageBody xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MailMessageBody>
    <Body>sample String 1</Body>
    <IsHTML>true</IsHTML>
    <MailMessageBodyId>3</MailMessageBodyId>
    <MailMessageId>4</MailMessageId>
  </MailMessageBody>
  <MailMessageBody>
    <Body>sample String 1</Body>
    <IsHTML>true</IsHTML>
    <MailMessageBodyId>3</MailMessageBodyId>
    <MailMessageId>4</MailMessageId>
  </MailMessageBody>
</ArrayOfMailMessageBody>

application/vnd.api+json

Sample:

Sample not available.