Getting Started
Account Management
Token Management
Order Management
Shipment Management
Account Management
Account Creation (Multiple)
Use the https://app.ship.com/public/account endpoint to create a new Ship.com account programmatically.
Request Parameters
Array of account creation objects. (Same as Account Creation)
Request Example
{
"email": "string",
"password": "string",
"firstName": "string",
"lastName": "string",
"phoneNumber": "string",
"address1": "string",
"city": "string",
"state": "string",
"zip": "string"
}Request Parameters
Array of account creation objects.
Successful Response Example
{
"success": true,
"error": null,
"oauth": {
"token": "string",
"refreshToken": "string",
"expires": "date"
}
}