Webhook for pickup notifications
Webhook to push collection notifications to any URL provided by the carrier. Notifications are sent once per day, informing the carrier about parcels that need to be picked up from the lockers.
Body
Information about locker collections.
-
eventTimestamp
string(date-time) The timestamp of the collection event
-
lockerUid
string The unique identifier of the locker in the GLS/NXT Platform
-
carrierLockerId
string | null The unique identifier of the locker in the Carrier's system
-
courierAccessCode
string | null Access code for the courier to collect parcels from locker. Access code rotates daily.
-
parcels
array[object]
Request examples
{
"eventTimestamp": "2025-08-20T00:00:00Z",
"lockerUid": "lockerUID123",
"carrierLockerId": "Locker1",
"courierAccessCode": "anyValidCode123",
"parcels": [
{
"carrierParcelId": "anyCarrierParcelId123"
}
]
}