오더 API
주문 처리 및 관리
GET /api/order
Retrieves a list of all the orders
GET /api/order/{id}
Retrieves a specific order
POST /api/order
Creates a new order
| id | The ID or unique identifier of the order "id": 1  | 
| po_number | Purchase order number "po_number": "PO0000000001"  | 
| tracking_number | Tracking number "tracking_number": "547564789798789"  | 
| status | --- "status": "---"  | 
| name | Customer's name "name": "John Doe"  | 
Customer's email address "email": "johndoe@email.com"  | |
| phone | Customer's phone number "phone": "(999) 999-9999"  | 
| address_line_1 | Customer's address (line 1) "address_line_1": "1F 111, Block 10"  | 
| address_line_2 | Customer's address (line 2) "address_line_2": "LongJun Industrial Zone, Dalang"  | 
| zip | Customer's Zip/Postal Code "zip": "511700"  | 
| city | Customer's city "city": "Shenzhen"  | 
| province | Customer's province "province": "Guangdong"  | 
| country | Customer's country "country": "China"  | 
| remarks | Additional remarks "remarks": "Deliver on time"  | 
| order_date | Additional remarks "order_date": "01/01/2020"  | 
| processed_date | Additional remarks "processed_date": "01/02/2020"  | 
| closed_date | Additional remarks "closed_date": "01/03/2020"  | 
| cancelled_date | Additional remarks "cancelled_date": "01/04/2020"  | 
| cancel_reason | Additional remarks "cancel_reason": "---"  | 
| subtotal_price | Additional remarks "subtotal_price": "500"  | 
| shipping_cost | Additional remarks "shipping_cost": "100"  | 
| total_tax | Additional remarks "total_tax": "15"  | 
| total_discounts | Additional remarks "total_discounts": "0"  | 
| total_price | Additional remarks "total_price": "615"  | 
| order_items | List of items "order_items": [ { "id": 15, "order_id": 5, "product_variant_id": 1, "quantity": 15, "price": "0.02", "discount": "0.00", "fulfillment_status": "Pending", "created_at": "2019-03-26 12:38:29", } ] 
  | 
모든 주문 검색 중
헤더
- Authorization: Bearer {Your-API-Token}
 - Accept: application/json
 
특정 주문 검색
헤더
- Authorization: Bearer {Your-API-Token}
 - Accept: application/json
 
특정 제품 검색
헤더
- Authorization: Bearer {Your-API-Token}
 - Accept: application/json
 
 {
     "name": "John Doe",
     "email": "johndoe@email.com",
     "phone": "(999) 999-9999",
     "address_line_1": "1F 111, Block 10",
     "address_line_2": "LongJun Industrial Zone, Dalang",
     "zip": "511700",
     "city": "Shenzhen",
     "province": "Guangdong",
     "country": "China",
     "remarks": "---",
     "order_date": "",
     "processed_date": "01/01/2020",
     "closed_date": "01/02/2020",
     "cancelled_date": "01/03/2020",
     "cancel_reason": "---",
     "subtotal_price": "500",
     "shipping_cost": "100",
     "total_tax": "50",
     "total_discounts": "0",
     "total_price": "650",
     "order_items": [
       {
         "id": 1, "quantity": 10
       },
       {         "id": 2, "quantity": 5
       },
       {
         "id": 3, "quantity": 15
       }
     ]
 }