Pallet item webhooks
Types of triggers
Webhooks can be triggered on the following events related to pallet items.
Pallet item is closed
This webhook will fire when the pallet item is closed.
Payload
Example
When the webhook is triggered, the following payload will be delivered to the webhook endpoint.
{
"webhookPalletItemsId": 0,
"webhookEventId": 0,
"webhookTemplate": "string",
"system": "string",
"timestamp": "2023-01-01T12:00:00.0000000",
"goodsOwnerId": 0,
"goodsOwnerName": "string",
"palletItem": {
"palletItemId": 0,
"labelId": "string",
"comment": "string",
"serial": "string",
"weight": null,
"volume": null,
"length": null,
"width": null,
"height": null,
"loadmeters": null,
"location": {
"locationId": 0,
"locationName": "string"
},
"outDate": "2023-01-01T12:00:00",
"inDate": "2023-01-01T12:00:00",
"parentPalletItemId": null,
"palletType": {
"palletTypeId": 0,
"palletTypeCode": "string"
},
"palletItemStatus": {
"palletItemStatusId": 0,
"palletItemStatusCode": "string"
}
},
"palletItemConnections": {
"order": {
"orderId": null
},
"shipment": {
"shipmentId": null
},
"purchaseOrder": {
"purchaseOrderId": null
}
},
"byComputer": {
"computerId": 0,
"computerName": "string"
},
"byUser": {
"userId": 0
}
}
Specification
| WebhookPalletItemPayload |
| webhookPalletItemsId | int | |
| webhookEventId | int | Internal ID for this particular event. |
| webhookTemplate | string | The name of the webhook type. |
| system | string | The name of the Ongoing WMS instance where the event happened. |
| timestamp | string | When the event happened. |
| goodsOwnerId | int | The Ongoing WMS system id for the goods owner. |
| goodsOwnerName | string | |
| palletItem | PalletItemInfo | An element of type PalletItemInfo. |
| palletItemConnections | PalletItemConnectionsInfo | An element of type PalletItemConnectionsInfo. |
| byComputer | ByComputerInfo | An element of type ByComputerInfo. |
| byUser | ByUserInfo | An element of type ByUserInfo. |
| PalletItemInfo |
| palletItemId | int | |
| labelId | string | |
| comment | string | |
| serial | string | |
| weight | decimal (nullable) | |
| volume | decimal (nullable) | |
| length | decimal (nullable) | |
| width | decimal (nullable) | |
| height | decimal (nullable) | |
| loadmeters | decimal (nullable) | |
| location | LocationInfo | An element of type LocationInfo. |
| outDate | dateTime (nullable) | |
| inDate | dateTime (nullable) | |
| parentPalletItemId | int (nullable) | |
| palletType | PalletTypeInfo | An element of type PalletTypeInfo. |
| palletItemStatus | PalletItemStatusInfo | An element of type PalletItemStatusInfo. |
| LocationInfo |
| locationId | int | |
| locationName | string | |
| PalletTypeInfo |
| palletTypeId | int | |
| palletTypeCode | string | |
| PalletItemStatusInfo |
| palletItemStatusId | int | |
| palletItemStatusCode | string | |
| PalletItemConnectionsInfo |
| order | OrderInfo | An element of type OrderInfo. |
| shipment | ShipmentInfo | An element of type ShipmentInfo. |
| purchaseOrder | PurchaseOrderInfo | An element of type PurchaseOrderInfo. |
| OrderInfo |
| orderId | int (nullable) | |
| ShipmentInfo |
| shipmentId | int (nullable) | |
| PurchaseOrderInfo |
| purchaseOrderId | int (nullable) | |
| ByComputerInfo |
| computerId | int | Ongoing WMS workstation ID of the workstation which the user was logged in to. |
| computerName | string | Ongoing WMS workstation name of the workstation which the user was logged in to. |
| ByUserInfo |
| userId | int | Ongoing WMS user ID of the user who performed the action. |