POST ItemMovement/Get
Retrieves a collection of Item Movement Transactions
Request Information
URI Parameters
None.
Body Parameters
The Item Movement Request Model
Item Movement Request ModelName | Type | Additional information | Description |
---|---|---|---|
FromDate | date |
None. |
Gets or sets From Date. |
ToDate | date |
None. |
Gets or sets To Date. |
FromItem | string |
None. |
The Item Code to start the range at. |
ToItem | string |
None. |
The Item Code to stop the range at. |
FromCategory | string |
None. |
The Category Name to start the range at. |
ToCategory | string |
None. |
The Category Name to stop the range at. |
IncludeActive | bool |
None. |
|
IncludeInactive | bool |
None. |
|
IncludePhysical | bool |
None. |
|
IncludeService | bool |
None. |
Request Formats
application/json, text/json
Sample:
{ "FromItem": "sample string 1", "ToItem": "sample string 2", "FromCategory": "sample string 3", "ToCategory": "sample string 4", "IncludeActive": true, "IncludeInactive": true, "IncludePhysical": true, "IncludeService": true, "FromDate": "2024-11-15", "ToDate": "2024-11-15" }
Response Information
Resource Description
Collection of Item Movement Transactions
Collection of Item MovementName | Type | Additional information | Description |
---|---|---|---|
ID | integer |
None. |
|
Date | date |
None. |
|
Reference | string |
None. |
|
Quantity | nullable decimal |
None. |
|
DocumentTypeId | integer |
None. |
|
Name | string |
None. |
|
DocumentNumber | string |
None. |
|
ItemCode | string |
None. |
|
ItemDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "Date": "2024-11-15", "Reference": "sample string 3", "Quantity": 1.0, "DocumentTypeId": 4, "Name": "sample string 5", "DocumentNumber": "sample string 6", "ItemCode": "sample string 7", "ItemDescription": "sample string 8" }, { "ID": 1, "Date": "2024-11-15", "Reference": "sample string 3", "Quantity": 1.0, "DocumentTypeId": 4, "Name": "sample string 5", "DocumentNumber": "sample string 6", "ItemCode": "sample string 7", "ItemDescription": "sample string 8" } ]