Getting Started
Account Management
Token Management
Order Management
Shipment Management
Account Management
Account Creation
Use the https://app.ship.com/public/account endpoint to create a new Ship.com account programmatically. Include your API key in the Authorization header of all requests:
Request Parameters
Include your API key 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}
Request Parameters
Array of account creation objects.
Successful Response Example
1{
2 "success": true,
3 "error": null,
4 "oauth": {
5 "token": "string",
6 "refreshToken": "string",
7 "expires": "date"
8 }
9}