These docs are for v1.1. Click to read the latest docs for v1.2.

A partner may create ShippingEasy accounts on behalf of their customers. The first time a customer logs into an account created via the partner API they will be prompted to provide billing information. Their subscription plan will be preset to whatever plan was sent in the account creation payload.

Note that the API key and API secret values that are used for partner requests are not the same as the API key and API secret used for accessing a ShippingEasy customer account - see API Credentials for more.

Example payload

{
   "account":{
      "first_name":"Bonita",
      "last_name":"Yundt",
      "company_name":"Emard, Becker and Morissette",
      "email":"[email protected]",
      "phone_number":"787.128.7490",
      "address":"97509 Littel Throughway",
      "address2":"",
      "state":"AA",
      "city":"North Marielastad",
      "postal_code":"46183",
      "country":"Moldova",
      "password":"abc123",
      "subscription_plan_code":"basic"
   }
}

An example in PHP is available here.

Language