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": "485daf71-2db6-4334-a0cc-e233b862a903",
  "messageId": "e6785ef5-2d5f-44eb-a69d-cb6656a75cbd",
  "messageAuditTypeId": "d1c2f8af-4c4e-41f4-b2d0-2530a72d6fd0",
  "messageAuditTypeLookupKey": "sample string 4",
  "text": "sample string 5",
  "messageCyanId": 6,
  "cyanId": 7,
  "createdDateUtc": "2025-10-19T20:46:15.7315344+00:00",
  "updatedDateUtc": "2025-10-19T20:46:15.7315344+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-10-19T20:46:15.7315344+00:00</CreatedDateUtc>
  <UpdatedDateUtc>2025-10-19T20:46:15.7315344+00:00</UpdatedDateUtc>
  <CyanId>7</CyanId>
  <MessageAuditId>485daf71-2db6-4334-a0cc-e233b862a903</MessageAuditId>
  <MessageAuditTypeId>d1c2f8af-4c4e-41f4-b2d0-2530a72d6fd0</MessageAuditTypeId>
  <MessageAuditTypeLookupKey>sample string 4</MessageAuditTypeLookupKey>
  <MessageCyanId>6</MessageCyanId>
  <MessageId>e6785ef5-2d5f-44eb-a69d-cb6656a75cbd</MessageId>
  <Text>sample string 5</Text>
</MessageAuditRepresentation>