Retrieve a list of lockers with optional filters such as location, status, carrier, and provider.
Security
ApiKeyAuth
- Mock serverhttps://docs.glsnxt.com/_mock/openapi-carrier-integration-api/lockers
- Staginghttps://api.staging.glsnxt.com/ooh/carrier-connector/v1/lockers
- Productionhttps://api.glsnxt.com/ooh/carrier-connector/v1/lockers
curl -i -X GET \
'https://docs.glsnxt.com/_mock/openapi-carrier-integration-api/lockers?providerName=BLOQ&status=ACTIVE&city=Berlin&countryCode=DE&compartmentSize=MEDIUM' \
-H 'X-API-Key: YOUR_API_KEY_HERE'List of lockers retrieved successfully.
Array []
Locker availability schedule.
Conditional constraints (enforced server-side, not by the generated client):
- If
accessModeisSCHEDULED,weeklyScheduleMUST be provided and non-empty. - If
accessModeisALWAYS,weeklyScheduleMUST be omitted.
Indicates which carrier owns the locker. null means the locker belongs to a 3rd party provider.
Example:"GLS"
A list of different compartment types available in the locker.
Example:
[ { "size": "SMALL", "count": 10, "height": 200, "width": 400, "length": 600 }, { "size": "MEDIUM", "count": 4, "height": 400, "width": 400, "length": 600 }, { "size": "LARGE", "count": 2, "height": 800, "width": 400, "length": 600 } ]
Response
[ { "uid": "1002377838", "carrier": { … }, "provider": { … }, "location": { … }, "features": { … }, "openingHours": { … }, "metadata": [ … ], "ownedByCarrier": "GLS", "compartmentTypes": [ … ] } ]