Skip to content

Get Individual Merchant

Request

The operation fetches individual merchants associated to a developer.

Security
bearerAuth
Headers
X-PB-Developer-Partner-IDstring

The Developer Partner ID is assigned by PB to uniquely identify a Developer's strategic business partners. Here individual merchant is the business partner.

curl -i -X GET \
  https://api-sandbox.sendpro360.pitneybowes.com/shipping/api/v1/partners/individual \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'X-PB-Developer-Partner-ID: string'

Responses

The specified partner has been fetched.

Bodyapplication/json
subIdstring

For Individual Merchants it is merchant's subscription ID. This returns in the response only if the partner is Individual Merchant.

typestring

Type of the developer partner. Here type in individual merchant.

Example:"Individual Merchant"
archiveboolean

Indicates if the record is archived.

Example:true
statusstring

Current status of the merchant. Status SUSPENDED is when partner is deleted from UI and TERMINATED when partner is deleted via API.

Enum:"ACTIVE""SUSPENDED""TERMINATED"
Example:"TERMINATED"
insertTimestampstring, (date-time)

Creation timestamp for this association.

Example:"2025-10-09T14:18:17.9Z"
updateTimestampstring, (date-time)

Last update timestamp for this association.

Example:"2025-10-09T14:18:30.142Z"
developerIdstring

Developer/partner identifier that owns this association.

Example:"sa535e3"
emailstring, (email)

Contact email for the merchant.

Example:"abcd_1@yopmail.com"
namestring

Display name for the merchant.

Example:"Known Merchant1"
countryCodestring

Two-letter ISO 3166-1 alpha-2 country code.

Example:"US"
carrierAccountsArray of objects

Carriers accounts details associated with this merchant.

Response
{ "subId": "string", "type": "Individual Merchant", "archive": true, "status": "TERMINATED", "insertTimestamp": "2025-10-09T14:18:17.9Z", "updateTimestamp": "2025-10-09T14:18:30.142Z", "developerId": "sa535e3", "email": "abcd_1@yopmail.com", "name": "Known Merchant1", "countryCode": "US", "carrierAccounts": [ { "carrierAccountId": "9RNmJJnM5x1Y", "carrierName": "DHL Express", "carrierID": "DHLEXP", "shipperId": "2000082819" } ] }