POST public-api/transactions/public-api/audit-count
This API is used to perform an audit count transaction. Any discrepancies found will need to be resolved using the reconcile transaction Requires the Allow Audit permission, enforces Role Site and Asset Type security Accepts a maximum of 500 records at a time
Request Information
URI Parameters
None.
Body Parameters
TransactionBatchRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientDeviceId | string |
None. |
|
| Requests | Collection of QuantifiedRequestModel |
None. |
Request Formats
application/json
Sample:
{
"ClientDeviceId": "sample string 1",
"Requests": [
{
"AssetItemNumber": "sample string 1",
"Trackby": {
"SerialNumber": "sample string 1",
"Lot": "sample string 2",
"DateCode": "sample string 3",
"ContainerId": "sample string 4",
"Custom1": "sample string 5",
"Custom2": "sample string 6",
"Custom3": "sample string 7",
"Custom4": "sample string 8",
"Custom5": "sample string 9",
"Custom6": "sample string 10",
"Custom7": "sample string 11",
"Custom8": "sample string 12",
"Custom9": "sample string 13",
"Custom10": "sample string 14"
},
"TransTags": {
"SerialOnRemove": "sample string 1",
"Customer": "sample string 2",
"Supplier": "sample string 3",
"Reference": "sample string 4",
"Custom1": "sample string 5",
"Custom2": "sample string 6",
"Custom3": "sample string 7",
"Custom4": "sample string 8",
"Custom5": "sample string 9",
"Custom6": "sample string 10",
"Custom7": "sample string 11",
"Custom8": "sample string 12",
"Custom9": "sample string 13",
"Custom10": "sample string 14"
},
"SpacialLocation": {
"Site": "sample string 1",
"LocationPrefix": "sample string 2",
"Location": "sample string 3",
"AltLpnContainer": "sample string 4"
},
"Quantity": 2.0,
"UnitCost": 3.0,
"TransDateUtc": "2026-03-12T15:35:47.9235589+00:00",
"Other": {
"CustomerNumber": "sample string 1",
"EmployeeNumber": "sample string 2",
"VendorNumber": "sample string 3",
"Comments": "sample string 4",
"RecordNumber": "sample string 5"
}
},
{
"AssetItemNumber": "sample string 1",
"Trackby": {
"SerialNumber": "sample string 1",
"Lot": "sample string 2",
"DateCode": "sample string 3",
"ContainerId": "sample string 4",
"Custom1": "sample string 5",
"Custom2": "sample string 6",
"Custom3": "sample string 7",
"Custom4": "sample string 8",
"Custom5": "sample string 9",
"Custom6": "sample string 10",
"Custom7": "sample string 11",
"Custom8": "sample string 12",
"Custom9": "sample string 13",
"Custom10": "sample string 14"
},
"TransTags": {
"SerialOnRemove": "sample string 1",
"Customer": "sample string 2",
"Supplier": "sample string 3",
"Reference": "sample string 4",
"Custom1": "sample string 5",
"Custom2": "sample string 6",
"Custom3": "sample string 7",
"Custom4": "sample string 8",
"Custom5": "sample string 9",
"Custom6": "sample string 10",
"Custom7": "sample string 11",
"Custom8": "sample string 12",
"Custom9": "sample string 13",
"Custom10": "sample string 14"
},
"SpacialLocation": {
"Site": "sample string 1",
"LocationPrefix": "sample string 2",
"Location": "sample string 3",
"AltLpnContainer": "sample string 4"
},
"Quantity": 2.0,
"UnitCost": 3.0,
"TransDateUtc": "2026-03-12T15:35:47.9235589+00:00",
"Other": {
"CustomerNumber": "sample string 1",
"EmployeeNumber": "sample string 2",
"VendorNumber": "sample string 3",
"Comments": "sample string 4",
"RecordNumber": "sample string 5"
}
}
]
}
Response Information
Resource Description
WaspResultOfResults| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Results |
None. |
|
| Messages | Collection of WtResult |
None. |
|
| BatchNumber | integer |
None. |
|
| HasError | boolean |
None. |
|
| HasHttpError | boolean |
None. |
|
| HasMessage | boolean |
None. |
|
| HasSuccessWithMoreDataRemaining | boolean |
None. |
|
| TotalRecordsLongCount | integer |
None. |
Response Formats
application/json
Sample:
{
"Data": {
"ResultList": [
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
},
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
}
],
"SuccessfullResults": 1,
"TotalResults": 2,
"ErrorCount": 0
},
"Messages": [
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
},
{
"ResultCode": 0,
"Message": "sample string 1",
"HttpStatusCode": 200,
"FieldName": "sample string 2"
}
],
"BatchNumber": 1,
"HasError": false,
"HasHttpError": false,
"HasMessage": true,
"HasSuccessWithMoreDataRemaining": false,
"TotalRecordsLongCount": 1
}