Shipping APIs
//
Get Carrier Accounts
The operation retrieves onboarded Carriers with their Carrier Account IDs which uniquely identify multiple accounts of same carrier.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/carrierAccounts
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/shipping/api/v1/carrierAccounts
- Sandbox Server for Canadahttps://api-ppd.shipping360.pitneybowes.com/ca/shipping/api/v1/carrierAccounts
- Production Server for Canadahttps://api.shipping360.pitneybowes.com/ca/shipping/api/v1/carrierAccounts
curl -i -X GET \
https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/carrierAccounts \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-PB-Developer-Partner-Id: string' \
-H 'X-PB-LocationId: string'Response
{ "carrierAccounts": [ { "carrierAccountId": "abcd12", "carrierName": "FedEx" }, { "carrierAccountId": "xyz12", "carrierName": "UPS" }, { "carrierAccountId": "12prqs", "carrierName": "USPS" } ] }