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": "9a67cdfe-11aa-45da-b0e6-533887eb8d57",
  "messageId": "469557bb-da0a-453e-acdb-fe5563df2b15",
  "messageAuditTypeId": "a04aab6a-7d05-4e43-8003-d80aad50bf65",
  "messageAuditTypeLookupKey": "sample string 4",
  "text": "sample string 5",
  "messageCyanId": 6,
  "cyanId": 7,
  "createdDateUtc": "2025-09-13T02:03:59.3366258+00:00",
  "updatedDateUtc": "2025-09-13T02:03:59.3366258+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>2025-09-13T02:03:59.3366258+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-09-13T02:03:59.3366258+00:00</UpdatedDateUtc>
  <CyanId>7</CyanId>
  <MessageAuditId>9a67cdfe-11aa-45da-b0e6-533887eb8d57</MessageAuditId>
  <MessageAuditTypeId>a04aab6a-7d05-4e43-8003-d80aad50bf65</MessageAuditTypeId>
  <MessageAuditTypeLookupKey>sample string 4</MessageAuditTypeLookupKey>
  <MessageCyanId>6</MessageCyanId>
  <MessageId>469557bb-da0a-453e-acdb-fe5563df2b15</MessageId>
  <Text>sample string 5</Text>
</MessageAuditRepresentation>