...
Code Block | ||
---|---|---|
| ||
{ "tires": [ { "tire_id": "UHJpbnh8fDM1MjEyNTA3MDN8fHRpcmVodWJ8fDEyNjc3fHxC", "branch": "100", "cost": 50.99, "fet": null, "fet_source": "tireconnect", "quantity": 4, "quantity_available": 190, "stock_available": [ { "branch": "100", "id": "100", "branch_type": "primary", "quantity": 190, "name": "TLC 100 RALEIGH (04\/01\/2024 03:00pm)", "ship_data": "a. Local customer - based on next available cut-off (Please see in B2B portal). \nb. Within 200 miles, before 2:30 PM in a local time zone on a business day - next business day.\nc. 300 miles, before 2:30 P.M local time business day 2 business days.\ne. Everything else - 3-5 business days.\n\nFor orders made not on a business day, 1 business day is added to projected delivery. 1 day added for Freight orders on Saturdays", "address": { "address1": "900 AVIATION PKWY", "address2": null, "postal_code": "27560-9224", "city": "MORRISVILLE", "province": "NC", "country": null }, "contact": { "name": null, "first_name": null, "last_name": null, "email": "tlc100raleigh@tirehub.com", "alt_email": null, "phone": "919-674-5026", "alt_phone": null }, "delivery_date_time": { "date": "2024-04-01", "time": "15:00:00", "timezone": "-04:00", "notes": null }, "cutoff": { "date": "2024-04-01", "time": "11:00:00", "timezone": "-04:00" }, "distance": 40, "distance_unit": "ml" } ] } ], "cost": 50.99, "quantity": 4, "quantity_available": 190, "stock_available": [ { "branch": "100", "id": "100", "branch_type": "primary", "quantity": 190, "name": "TLC 100 RALEIGH (04\/01\/2024 03:00pm)", "ship_data": "a. Local customer - based on next available cut-off (Please see in B2B portal). \nb. Within 200 miles, before 2:30 PM in a local time zone on a business day - next business day.\nc. 300 miles, before 2:30 P.M local time business day 2 business days.\ne. Everything else - 3-5 business days.\n\nFor orders made not on a business day, 1 business day is added to projected delivery. 1 day added for Freight orders on Saturdays", "address": { "address1": "900 AVIATION PKWY", "address2": null, "postal_code": "27560-9224", "city": "MORRISVILLE", "province": "NC", "country": null }, "contact": { "name": null, "first_name": null, "last_name": null, "email": "tlc100raleigh@tirehub.com", "alt_email": null, "phone": "919-674-5026", "alt_phone": null }, "delivery_date_time": { "date": "2024-04-01", "time": "15:00:00", "timezone": "-04:00", "notes": null }, "cutoff": { "date": "2024-04-01", "time": "11:00:00", "timezone": "-04:00" }, "distance": 40, "distance_unit": "ml" } ], "total_cost": 203.96, "total_fet": 0, "shipping_cost": 0null, "vendor_total_order": 214, "total_order": 203.96, "delivery_date_time": null } |
...
tire_id | Tire ID |
---|---|
branch | Branch ID |
cost | Tire Cost |
fet | FET |
quantity | Selected tire quantity |
quantity_available | Available quantity for this tire |
stock_available | List of branches with quantities where this tire currently available |
branch | Branch ID. Deprecated |
id | Branch ID |
quantity | Quantity available in this branch |
name | Branch name |
ship_data | Some shipping rules provided by the supplier |
address | Warehouse address |
contact | Warehouse contact details |
delivery_date_time | Estimated delivery date & time provided by the supplier |
cutoff | Cutoff |
distance | Distance from warehouse (provided by the supplier) |
distance_unit | Distance unit |
cost | Tire cost |
quantity | Selected quantity |
quantity_available | Available quantity |
total_cost | Total cost of tires in order |
total_fet | Total FET |
shipping_cost | Total shipping cost |
vendor_total_order | Total order counted by vendor. Can be null in case vendor don’t provide this information |
total_order | Total order counted by TireConnect |
delivery_date_time | Estimated delivery date & time provided by the supplier |
...
Code Block | ||
---|---|---|
| ||
{ "order_id":16170, "invoice":"999999999", "shipping_cost":null, "vendor_total_order": 312, "total_order": null, "tires":[ { "id":"QnJpZGdlc3RvbmV8fDAwMzE5M3x8a218fDEyNjc0fHxC", "part_number":"003193", "quantity_demand":4, "quantity_ordered":4, "price":152, "price_ordered":152, "status":"Successful", "message":"Order was placed successfully", "delivery_date_time":{ "date":"2023-06-25", "time":"16:45:00", "timezone":"+02:00" } } ], "status":"Successful", "message":"The order successfully submitted.", "delivery_date_time":{ "date":"2023-06-25", "time":"16:45:00", "timezone":"+02:00" } } |
...
order_id | Order ID in TireConnect system |
---|---|
invoice | Invoice ID returned by supplier |
shipping_cost | Shipping cost of order |
vendor_total_order | Total order counted by vendor. Can be null in case vendor don’t provide this information |
total_order | Total order counted by TireConnect |
tires | Array of tires |
id | Tire ID |
part_number | Tire part number |
quantity_demand | Requested tire quantity |
quantity_ordered | Ordered tire quantity |
price | Requested tire price |
price_ordered | Ordered tire price |
status | Tire status in order |
message | Message returned by supplier for each tire |
status | Order status |
message | Message returned by supplier for whole order |
delivery_date_time | Estimated Delivery Date & Time provided by the supplier |
...