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
webhookPalletItemsIdint
webhookEventIdintInternal ID for this particular event.
webhookTemplatestringThe name of the webhook type.
systemstringThe name of the Ongoing WMS instance where the event happened.
timestampstringWhen the event happened.
goodsOwnerIdintThe Ongoing WMS system id for the goods owner.
goodsOwnerNamestring
palletItemPalletItemInfoAn element of type PalletItemInfo.
palletItemConnectionsPalletItemConnectionsInfoAn element of type PalletItemConnectionsInfo.
byComputerByComputerInfoAn element of type ByComputerInfo.
byUserByUserInfoAn element of type ByUserInfo.
PalletItemInfo
palletItemIdint
labelIdstring
commentstring
serialstring
weightdecimal (nullable)
volumedecimal (nullable)
lengthdecimal (nullable)
widthdecimal (nullable)
heightdecimal (nullable)
loadmetersdecimal (nullable)
locationLocationInfoAn element of type LocationInfo.
outDatedateTime (nullable)
inDatedateTime (nullable)
parentPalletItemIdint (nullable)
palletTypePalletTypeInfoAn element of type PalletTypeInfo.
palletItemStatusPalletItemStatusInfoAn element of type PalletItemStatusInfo.
LocationInfo
locationIdint
locationNamestring
PalletTypeInfo
palletTypeIdint
palletTypeCodestring
PalletItemStatusInfo
palletItemStatusIdint
palletItemStatusCodestring
PalletItemConnectionsInfo
orderOrderInfoAn element of type OrderInfo.
shipmentShipmentInfoAn element of type ShipmentInfo.
purchaseOrderPurchaseOrderInfoAn element of type PurchaseOrderInfo.
OrderInfo
orderIdint (nullable)
ShipmentInfo
shipmentIdint (nullable)
PurchaseOrderInfo
purchaseOrderIdint (nullable)
ByComputerInfo
computerIdintOngoing WMS workstation ID of the workstation which the user was logged in to.
computerNamestringOngoing WMS workstation name of the workstation which the user was logged in to.
ByUserInfo
userIdintOngoing WMS user ID of the user who performed the action.