APIs for managing known shipper entities. These APIs support operations such as registering a merchant as a known shipper, retrieving shipper details, updating shipper information, modifying shipper status, and deleting shipper records. They enable control over which merchants are authorized and active for shipping operations within the platform.
This operation registers a merchant as a known shipper.
Request body to register a merchant as a known shipper.
The addressLine1 contains the Flat number, Building or Apartment Name/number (if any) or company name (if not residential) of the Sender.
Max length = 50
The addressLine2 contains the Area or Street Name. This is an optional field.
Max length = 50
The addressLine3 contains other details for easy reach, e.g. Landmark. This is an optional field.
Max length = 50
The name of the city or town the merchant's address belongs to.
The name of the State or Province the merchant belongs to. It is the 2-letter State or Province Code for US address(es).
The Postal Code or ZIP Code of the address.
For US addresses, use only 9-digit ZIP Code. If it is 5 digit code then pass four zeros (0000)
The name of the company, in case if the merchant address is not residential.
A unique identifier assigned to the specific carrier account. Its value can be referred from the response of Get Carrier Accounts API.
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/shippers/registration
- Production Serverhttps://api.sendpro360.pitneybowes.com/shipping/api/v1/shippers/registration
curl -i -X POST \
https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/shippers/registration \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"addressLine1": "1234 Elm Street",
"addressLine2": "Suite 567",
"addressLine3": "Building A",
"cityTown": "San Francisco",
"stateProvince": "CA",
"postalCode": "941056743",
"countryCode": "US",
"name": "John Doe",
"company": "PB",
"phone": "1234512343",
"carrierAccountId": "34jdsS81Kmp",
"email": "johndoe@yopmail.com"
}'The merchant has been successfully registered.
A unique ID is generated for a merchant when they register as a known shipper. This ID is used for all future operations related to this known shipper
The addressLine1 contains the Flat number, Building or Apartment Name/number (if any) or company name (if not residential) of the Sender.
The addressLine2 contains the Area or Street Name. This is an optional field.
The addressLine3 contains other details for easy reach, e.g. Landmark.
The name of the city or town the merchant's address belongs to.
The name of the company, in case if the merchant address is not residential.
A unique identifier assigned to the specific carrier account.
{ "shipperID": "2000083071", "addressLine1": "1234 Elm Street", "addressLine2": "Suite 567", "addressLine3": "Building A", "cityTown": "San Francisco", "stateProvince": "CA", "postalCode": "941056743", "countryCode": "US", "name": "John Doe", "company": "PB", "phone": "1234512343", "carrierAccountId": "34jdsS81Kmp", "email": "string", "status": "new" }