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

Returns the same inventory-activity data as , but as a CSV file download (text/csv, attachment). Column names are the raw result field names. All filter options on (ExcludeEmptyQuantity, ExcludeMoveTransaction, etc.) are honored identically to the JSON endpoint.



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.5866309+00:00",
  "EndDate": "2026-05-28T12:42:20.5866309+00:00",
  "ItemNumber": "sample string 1",
  "ExcludeMoveTransaction": true,
  "ExcludeEmptyQuantity": true
}



Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.