POST api2/InventoryManagement/Prototype/CLG/ManualAuditLog/AddManualAuditLog

Request Information

URI Parameters

None.

Body Parameters

ManualAuditLogModel
NameDescriptionTypeAdditional information
AuditLogId

integer

None.

DateOfAudit

date

None.

Comments

string

None.

RevisionOf

integer

None.

RevisionNbr

integer

None.

Items

Collection of ManualAuditLogItemModel

None.

Request Formats

application/json, text/json

Sample:
{
  "AuditLogId": 1,
  "DateOfAudit": "2026-05-11T08:14:01.706142-05:00",
  "Comments": "sample string 3",
  "RevisionOf": 1,
  "RevisionNbr": 1,
  "Items": [
    {
      "AuditLogId": 1,
      "AuditLogItemId": 2,
      "ExpectedQuantity": 3,
      "RecordedQuantity": 4,
      "DiscrepancyReason": "sample string 5"
    },
    {
      "AuditLogId": 1,
      "AuditLogItemId": 2,
      "ExpectedQuantity": 3,
      "RecordedQuantity": 4,
      "DiscrepancyReason": "sample string 5"
    }
  ]
}

application/xml, text/xml

Sample:
<ManualAuditLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JCDHAPI.Controllers.InventoryManagement.Prototype.CLG.Models">
  <AuditLogId>1</AuditLogId>
  <Comments>sample string 3</Comments>
  <DateOfAudit>2026-05-11T08:14:01.706142-05:00</DateOfAudit>
  <Items>
    <ManualAuditLogItemModel>
      <AuditLogId>1</AuditLogId>
      <AuditLogItemId>2</AuditLogItemId>
      <DiscrepancyReason>sample string 5</DiscrepancyReason>
      <ExpectedQuantity>3</ExpectedQuantity>
      <RecordedQuantity>4</RecordedQuantity>
    </ManualAuditLogItemModel>
    <ManualAuditLogItemModel>
      <AuditLogId>1</AuditLogId>
      <AuditLogItemId>2</AuditLogItemId>
      <DiscrepancyReason>sample string 5</DiscrepancyReason>
      <ExpectedQuantity>3</ExpectedQuantity>
      <RecordedQuantity>4</RecordedQuantity>
    </ManualAuditLogItemModel>
  </Items>
  <RevisionNbr>1</RevisionNbr>
  <RevisionOf>1</RevisionOf>
</ManualAuditLogModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.