Request Information

URI Parameters

NameDescriptionTypeAdditional information
mailMessageBodyId

The mail message body identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The mail message body, if it exists.

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"
}

text/html

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

application/xml, text/xml

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

application/vnd.api+json

Sample:

Sample not available.