Cyan Web API - Version 1


GET api/messageAudits/{messageAuditId}

            Gets a single MessageAudit.
            

Request Information

Parameters

NameDescriptionAdditional information
messageAuditId

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "messageAuditId": "f0b9bcd8-7731-4a69-95ea-22f7742b7111",
  "messageId": "28c0fa95-80db-48e1-9a94-86c71d752d84",
  "messageAuditTypeId": "46a83538-8df7-421f-976b-512bb0b71e66",
  "messageAuditTypeLookupKey": "sample string 4",
  "text": "sample string 5",
  "messageCyanId": 6,
  "cyanId": 7,
  "createdDateUtc": "2024-08-29T23:07:11.8649227+00:00",
  "updatedDateUtc": "2024-08-29T23:07:11.8649227+00:00"
}

application/xml, text/xml

Sample:
<MessageAuditRepresentation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BlueDot.Cyan.Server.Core.Models.Rest.Version1">
  <CreatedDateUtc>2024-08-29T23:07:11.8649227+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2024-08-29T23:07:11.8649227+00:00</UpdatedDateUtc>
  <CyanId>7</CyanId>
  <MessageAuditId>f0b9bcd8-7731-4a69-95ea-22f7742b7111</MessageAuditId>
  <MessageAuditTypeId>46a83538-8df7-421f-976b-512bb0b71e66</MessageAuditTypeId>
  <MessageAuditTypeLookupKey>sample string 4</MessageAuditTypeLookupKey>
  <MessageCyanId>6</MessageCyanId>
  <MessageId>28c0fa95-80db-48e1-9a94-86c71d752d84</MessageId>
  <Text>sample string 5</Text>
</MessageAuditRepresentation>