POST public-api/ic/item/inventory-activity

This method gets the inventory activity for a given date range and returns it in a json format similar to the other public apis. It can be filtered down to a specific item, move transactions can be excluded, and records with no quantity or activity can be filtered out



Request Information

URI Parameters

None.

Body Parameters

InventoryActivityRequest
NameDescriptionTypeAdditional information
StartDate

The start date of the activity to view

date

None.

EndDate

The end date of the activity to view

date

None.

ItemNumber

If you want to filter down to a specific item number you can pass that here, exact match

string

None.

ExcludeMoveTransaction

If you don't want to see the move transactions inflating the add and remove quantities pass true here

boolean

None.

ExcludeEmptyQuantity

If you want to exclude all items that have no quantity and no activity pass true here

boolean

None.

Request Formats

application/json

Sample:
{
  "StartDate": "2026-05-28T12:42:20.4135523+00:00",
  "EndDate": "2026-05-28T12:42:20.4135523+00:00",
  "ItemNumber": "sample string 1",
  "ExcludeMoveTransaction": true,
  "ExcludeEmptyQuantity": true
}



Response Information

Resource Description

WaspResultOfListOfInventoryActivityResult
NameDescriptionTypeAdditional information
Data

Type specific result that always depends on the function called.

Collection of InventoryActivityResult

None.

Messages

List of Messages. All APIs should return messages. If an API function returns an error you can find more information about the error or errors in this collection of messages.

Collection of WtResult

None.

BatchNumber

This is a global batch number generated by a mass group of transaction records to be returned to the consumer on each call to rolling transaction rules. This requests that each group of Move/Add/Remove transaction batches is tied together. In prior products (such as Mobile Asset Cloud), all are set to null and the only time when the batch number is generated is for multiple check-out transactions but the old is to generate for each responsible party.

integer

None.

HasError

True if an API function result has an error message in the results. If this is false, the function succeeded but other informative messages may be available.

boolean

None.

HasHttpError

True if an API function call could not be fully posted to the server or the results could not be fully returned.

boolean

None.

HasMessage

True if any message is available.

boolean

None.

HasSuccessWithMoreDataRemaining

True if the server sent part of the data and there is more data available. Use with paging APIs to fetch data one page at a time.

boolean

None.

TotalRecordsLongCount

This is the total number of records available in the database based on the query and filer conditions provided. It is possible that the value can change from call to call as users add and delete records so this should not be used to page through multiple recordsets of data. This is used, for example, to set relative scroll bar sizes. When paging through data using functions like the assetadvancedinfosearch, calculating TotalRecordsLongCount for every page full of data is an time-consuming operation. To avoid that extra calculation, and help prevent throttling, assign TotalRecordsLongCount to TotalCountFromPriorFetch in the AdvancedSearchParameters to skip recalculating this total page count and to page thru the records faster.

integer

None.

Response Formats

application/json

Sample:
{
  "Data": [
    {
      "item_number": "sample string 1",
      "item_description": "sample string 2",
      "item_alter_number": "sample string 3",
      "item_cost": 1.0,
      "item_list_price": 1.0,
      "item_sales_price": 1.0,
      "category_description": "sample string 4",
      "base_uom_name": "sample string 5",
      "start_date": "2026-05-28T12:42:20.485235+00:00",
      "start_total": 7.0,
      "add_total": 8.0,
      "remove_total": 9.0,
      "adjust_in_total": 10.0,
      "adjust_out_total": 11.0,
      "end_total": 12.0,
      "end_date": "2026-05-28T12:42:20.485235+00:00"
    },
    {
      "item_number": "sample string 1",
      "item_description": "sample string 2",
      "item_alter_number": "sample string 3",
      "item_cost": 1.0,
      "item_list_price": 1.0,
      "item_sales_price": 1.0,
      "category_description": "sample string 4",
      "base_uom_name": "sample string 5",
      "start_date": "2026-05-28T12:42:20.485235+00:00",
      "start_total": 7.0,
      "add_total": 8.0,
      "remove_total": 9.0,
      "adjust_in_total": 10.0,
      "adjust_out_total": 11.0,
      "end_total": 12.0,
      "end_date": "2026-05-28T12:42:20.485235+00:00"
    }
  ],
  "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
}