Retrieve a paginated list of parcels associated with the carrier, filterable by locker and/or parcel IDs.
- At least one of
lockerId,carrierLockerIdoridsmust be provided. - When more than one filter is given, the result is the intersection of all provided filters.
- By default this endpoint returns parcels regardless of status — both active bookings and completed/final parcels linked to the locker. Pass
isFinalto narrow the result to open (false) or finalized (true) parcels.
Security
ApiKeyAuth
- Mock serverhttps://docs.glsnxt.com/_mock/openapi-carrier-integration-api/v2/parcels
- Staginghttps://api.staging.glsnxt.com/ooh/carrier-connector/v1/v2/parcels
- Productionhttps://api.glsnxt.com/ooh/carrier-connector/v1/v2/parcels
curl -i -X GET \
'https://docs.glsnxt.com/_mock/openapi-carrier-integration-api/v2/parcels?lockerId=anyLockerId123&carrierLockerId=2760935259&ids=12345131%2CG6789011%2CA1234511&isFinal=false&page=1&pageSize=30' \
-H 'X-API-Key: YOUR_API_KEY_HERE'Parcels fetched successfully
Response
{ "content": [ { … } ], "pageNumber": 1, "pageSize": 30, "isLast": true }