Inventory_GetMovementEvents (Get)
- Last UpdatedNov 13, 2025
- 2 minute read
| Get | Inventory_GetMovementEvents |
Resource Path:/api/v1/inventory/MovementEvents
| Name | Description | Data Type |
|---|---|---|
| location | Required. The hierarchy location where the data is to be retrieved. | string |
| samplePeriod | The period of time to use in the query. This can be any filterable period definition or datetime. | datetime |
| movementType | The type of material movement. | string |
| hasError | A boolean-result flag that indicates whether there is a movement event error or not. | boolean |
| isDeleted | A boolean-result flag that indicates whether a movement event record is deleted or not. | boolean |
| locationIdentifier | A unique identifier for reporting points from external systems. | string |
| fields | The custom fields that must be specified as comma separated fields in a query. | string |
The response body is of type Array[MovementEvent].
Request
GET 'https://localhost:9003/api/v1/inventory/MovementEvents?Location=Talison.Site%201.Pit.Pit1&Sample%20Period=3E=20%222019-09-01T22:22:31Z%22%20AND%203C222019-09-30T22:22:31Z%22&MovementType=NOT%20(Adjustment%20Or%20Survey)&Has%20Error=False&IsDeleted=False&Fields=Comment,%20Shift,%20Original%20Quantity'Response
[
{
"Id": 30,
"SamplePeriod": "2019-09-30T04:00:00Z",
"Location": "Material Movements.Site 1.Pit.CreateBlastBlocks",
"LocationIdentifier": null,
"Finalized": false,
"HasError": false,
"IsDeleted": false,
"SourceEquipment": "Talison.Site 1.Input",
"SourceEquipmentIdentifier": null,
"SourceMaterialClass": "Material Class.Raw",
"SourceMaterialClassIdentifier": "Raw",
"SourceMaterial": "Material Model.Lithium.Raw.HG Ta",
"SourceMaterialIdentifier": "HG Ta",
"SourceLotGroup": "C119029",
"SourceLot": "C119029_HG Ta",
"SourceQuantity": 732.1,
"DestinationEquipment": "Talison.Site 1.Pit.Pit1",
"DestinationEquipmentIdentifier": "Pit1",
"DestinationMaterialClass": "Material Class.Raw",
"DestinationMaterialClassIdentifier": "Raw",
"DestinationMaterial": "Material Model.Lithium.Raw.HG Ta",
"DestinationMaterialIdentifier": "HG Ta",
"DestinationLotGroup": "C119029",
"DestinationLot": "C119029_HG Ta",
"DestinationQuantity": 732.1,
"SourceUnits": "tonne",
"DestinationUnits": "tonne",
"MovementType": "Manual",
"MovementDirection": "Input",
"SampleIdentifier": null,
"RecordIdentifier": null,
"RecordDateTime": null,
"Fields": {
"IsFinalized": false,
"Comment": "Block Model1 Creation",
"Shift": "19Sep30 day",
"Original Quantity": 732.1
}
},
{
"Id": 80,
"SamplePeriod": "2019-09-30T04:00:00Z",
"Location": "Material Movements.Site 1.Pit.CreateBlastBlocks",
"LocationIdentifier": null,
"Finalized": false,
"HasError": false,
"IsDeleted": false,
"SourceEquipment": "Talison.Site 1.Input",
"SourceEquipmentIdentifier": null,
"SourceMaterialClass": "Material Class.Raw",
"SourceMaterialClassIdentifier": "Raw",
"SourceMaterial": "Material Model.Lithium.Raw.Waste",
"SourceMaterialIdentifier": "Waste",
"SourceLotGroup": "C220011",
"SourceLot": "C220011_Waste-HR",
"SourceQuantity": 170.3,
"DestinationEquipment": "Talison.Site 1.Pit.Pit1",
"DestinationEquipmentIdentifier": "Pit1",
"DestinationMaterialClass": "Material Class.Raw",
"DestinationMaterialClassIdentifier": "Raw",
"DestinationMaterial": "Material Model.Lithium.Raw.Waste",
"DestinationMaterialIdentifier": "Waste",
"DestinationLotGroup": "C220011",
"DestinationLot": "C220011_Waste-HR",
"DestinationQuantity": 170.3,
"SourceUnits": "tonne",
"DestinationUnits": "tonne",
"MovementType": "Manual",
"MovementDirection": "Input",
"SampleIdentifier": null,
"RecordIdentifier": null,
"RecordDateTime": null,
"Fields": {
"IsFinalized": false,
"Comment": "Block Model1 Creation",
"Shift": "19Sep30 day",
"Original Quantity": 170.3
}
}
]Specify the filters as key value pairs. You can use a name or invariant display name for filtering. For example, if you need to add filter on custom field Au Tonnes greater than 0.005, then add a parameter with name Au Tonnes and value as > 0.005.