Shipping APIs
//
Get Parcel Types
The operation fetches Parcel Types based on the provided carrier, origin county, and the destination country. If query parameters are not provided, this will default to USPS as carrier, US as both origin and destination country code.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/parcelTypes
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/shipping/api/v1/parcelTypes
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/parcelTypes
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/parcelTypes
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/parcelTypes?carrier=string&originCountryCode=string&destinationCountryCode=string' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-PB-Developer-Partner-Id: string'Response
{ "parcels": [ { "brandedName": "Box 1092", "carrier": "USPS", "groupName": "Specialty Boxes and Envelopes", "brandedDimensions": { … }, "parcelId": "B1092", "isBranded": true, "parcelType": "LP", "serviceId": "PM", "weightRules": [ … ] }, { "brandedName": "My Box", "dimensionRules": [ … ], "groupName": "My Packaging", "parcelId": "PKG", "isBranded": false, "parcelType": "PKG", "suggestedTrackableSpecialserviceId": "Sig", "weightRules": [ … ] } ] }