Documentation
>
>
Order Creation

Order Management

Order Creation

Use the https://app.ship.com/public/order endpoint to create a new shipping order.

Request Parameters

Item Object Structure

Request Example

1{
2	"invoiceNumber": "string",
3    "firstName": "string",
4    "lastName": "string",
5    "email": "string",
6    "phone": "string",
7    "address1": "string",
8    "address2": "string",
9    "city": "string",
10    "state": "string",
11    "zip": "string",
12    "country": "string",
13    "total": 0.00,
14    "salesTax": 0.00,
15    "handling": 0.00,
16    "subtotal": 0.00,
17    "shipping": 0.00,
18    "weight": 0.00,
19    "discount": 0.00,
20    "items": [
21        {
22            "itemCode": "string",
23            "upc": "string",
24            "price": 0.00,
25            "quantity": 0
26        }
27    ]
28}

Response Structure

Request Parameters

Item Object Structure

Request Example

1{
2	"invoiceNumber": "string",
3    "firstName": "string",
4    "lastName": "string",
5    "email": "string",
6    "phone": "string",
7    "address1": "string",
8    "address2": "string",
9    "city": "string",
10    "state": "string",
11    "zip": "string",
12    "country": "string",
13    "total": 0.00,
14    "salesTax": 0.00,
15    "handling": 0.00,
16    "subtotal": 0.00,
17    "shipping": 0.00,
18    "weight": 0.00,
19    "discount": 0.00,
20    "items": [
21        {
22            "itemCode": "string",
23            "upc": "string",
24            "price": 0.00,
25            "quantity": 0
26        }
27    ]
28}

Response Structure