Getting Started
Account Management
Token Management
Order Management
Shipment Management
Account Management
Account Creation
Create a new Ship.com account with POST https://app.ship.com/public/account. The caller must send its own Authorization: Bearer header. Accounts created via the API receive no emails from Ship.com, and accounts without a payment method are automatically canceled when their 30-day trial ends.
Request Parameters
Include your bearer token in the Authorization header of all requests:
Request Example
1{
2 "email": "string",
3 "password": "string",
4 "firstName": "string",
5 "lastName": "string",
6 "phoneNumber": "string",
7 "address1": "string",
8 "city": "string",
9 "state": "string",
10 "zip": "string"
11}Response Structure
Successful Response Example
1{
2 "success": true,
3 "error": null,
4 "oauth": {
5 "token": "string",
6 "refreshToken": "string",
7 "expires": "date"
8 }
9}