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": "83ba1793-577c-4cc6-a2b3-a89e33809926",
  "messageId": "bf8631df-08f2-46b1-a7d6-030c5ae8c7bd",
  "messageAuditTypeId": "5a1d0849-d63e-4ee9-b638-fc0d11b942df",
  "messageAuditTypeLookupKey": "sample string 4",
  "text": "sample string 5",
  "messageCyanId": 6,
  "cyanId": 7,
  "createdDateUtc": "2025-12-15T19:49:27.5728195+00:00",
  "updatedDateUtc": "2025-12-15T19:49:27.5728195+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-12-15T19:49:27.5728195+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-12-15T19:49:27.5728195+00:00</UpdatedDateUtc>
  <CyanId>7</CyanId>
  <MessageAuditId>83ba1793-577c-4cc6-a2b3-a89e33809926</MessageAuditId>
  <MessageAuditTypeId>5a1d0849-d63e-4ee9-b638-fc0d11b942df</MessageAuditTypeId>
  <MessageAuditTypeLookupKey>sample string 4</MessageAuditTypeLookupKey>
  <MessageCyanId>6</MessageCyanId>
  <MessageId>bf8631df-08f2-46b1-a7d6-030c5ae8c7bd</MessageId>
  <Text>sample string 5</Text>
</MessageAuditRepresentation>