POST api/v2.0/Messaging/MarkMessagesAsRead

Marks the specified Mailbox Messages as 'Read'.

Request Information

URI Parameters

None.

Body Parameters

List of MessageKeys

Collection of globally unique identifier

Request Formats

application/json, text/json

Sample:
[
  "0d7a0a05-fa08-495a-b1e8-5f437dc8387c",
  "1132e2b2-9ae0-482d-b3be-e5b01e34bc38"
]

application/xml, text/xml

Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <guid>0d7a0a05-fa08-495a-b1e8-5f437dc8387c</guid>
  <guid>1132e2b2-9ae0-482d-b3be-e5b01e34bc38</guid>
</ArrayOfguid>

Response Information

Resource Description

A list of the results. If any of the Messages could not be marked as read, an error message will be included.

Collection of MarkMessageAsReadResponse
NameDescriptionTypeAdditional information
MessageKey

Unique Identifier of an Inbox Message.

globally unique identifier

None.

Success

Indicates if the message was succesfully marked as Read.

boolean

None.

ResponseMessage

Additional information such as the reason for a failure.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MessageKey": "853ffe47-e178-47fa-ae1b-4370c6e2b9b3",
    "Success": true,
    "ResponseMessage": "sample string 3"
  },
  {
    "MessageKey": "853ffe47-e178-47fa-ae1b-4370c6e2b9b3",
    "Success": true,
    "ResponseMessage": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMarkMessageAsReadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Messaging">
  <MarkMessageAsReadResponse>
    <MessageKey>853ffe47-e178-47fa-ae1b-4370c6e2b9b3</MessageKey>
    <ResponseMessage>sample string 3</ResponseMessage>
    <Success>true</Success>
  </MarkMessageAsReadResponse>
  <MarkMessageAsReadResponse>
    <MessageKey>853ffe47-e178-47fa-ae1b-4370c6e2b9b3</MessageKey>
    <ResponseMessage>sample string 3</ResponseMessage>
    <Success>true</Success>
  </MarkMessageAsReadResponse>
</ArrayOfMarkMessageAsReadResponse>