POST api/v2.0/Messaging/ReplyToMessage

Submits a new reply to a specified Mailbox Message to the original message's author.

Request Information

URI Parameters

None.

Body Parameters

Parameters that define the message to which to reply and the contact to whom to send the message

ReplyToMessageRequest
NameDescriptionTypeAdditional information
MailboxMessageKey

Key of the mailbox message to which this is a reply

globally unique identifier

None.

Subject

Subject of the reply, omit to use the subject from the message being replied to

string

None.

Body

Content of the reply

string

Required

Min length: 1

Request Formats

application/json, text/json

Sample:
{
  "MailboxMessageKey": "d6dbc785-35c1-4120-8b3e-6f78adb849af",
  "Subject": "sample string 2",
  "Body": "sample string 3"
}

application/xml, text/xml

Sample:
<ReplyToMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request">
  <Body>sample string 3</Body>
  <MailboxMessageKey>d6dbc785-35c1-4120-8b3e-6f78adb849af</MailboxMessageKey>
  <Subject>sample string 2</Subject>
</ReplyToMessageRequest>

Response Information

Resource Description

True if successful, false otherwise.

Collection of boolean

Response Formats

application/json, text/json

Sample:
[
  true,
  true
]

application/xml, text/xml

Sample:
<ArrayOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <boolean>true</boolean>
  <boolean>true</boolean>
</ArrayOfboolean>