orderDetails Type: object
| This field stores order details of the requested order. Example: {
"orderDetail": {
"_id": "254656887dfdgdtrts56",
"items": [
{
"name": "test description",
"weight": "500",
"price": "200",
"product": {
"name": "test description",
"description": "test description",
"price": "200"
},
"quantity": "2",
"total": "200"
}
],
"sub_total": "200",
"total": "200",
"item_count": 2,
"financial_status": "Paid",
"email": "[email protected]",
"shipping_address": {
"country": "AL",
"phone": "09999999999",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"zip": "383430",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"city": "test"
},
"seller_details": {
"gstin": "QGWSW254RG3RG34",
"tin": "AFD3RGRGRRE"
},
"order_id": "OID233",
"billing_address": {
"country": "AL",
"phone": "09999999999",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"zip_code": "383430",
"city": "test"
}
},
"pickupAddress": {
"country": "AL",
"save_address": false,
"phone": "09999999999",
"city": "test",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"zip": "383430",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"zip_code": "383430"
},
"selected_date": {
"readyPickup": "2017-11-17",
"cutofftime": "1:00:00"
},
"selected_time": "11:00",
"package_weight": 2125,
"service": "delhivery",
"package_dimensions": {
"length": 23,
"breadth": 22,
"height": 21
},
"cod": 0,
"other_details": {
"weight": "500",
"volumetric_weight": 2125.2
}
}
orderDetails.billing_address Type: object
| This field holds address associated with your credit card. Example:"billing_address": {
"country": "AL",
"phone": "09999999999",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"zip_code": "383430",
"city": "test"
}
| orderDetails.shipping_address Type: object
| This field holds the address where you want your items to be delivered. Example:"shipping_address": {
"country": "AL",
"phone": "09999999999",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"zip": "383430",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"city": "test"
}
|
|
pickupAddress Type: object
| This field holds address from where pickup of items will be done. Example: "pickupAddress": {
"country": "AL",
"save_address": false,
"phone": "09999999999",
"city": "test",
"type": "delivery_address",
"full_name": "Full Name",
"country_name": "Albania",
"_id": "59a047e3728d492a3a6aa9a3",
"address": "check",
"zip": "383430",
"state": "Elbasan",
"email": "[email protected]",
"created_on": "2017-08-25T15:53:07.968Z",
"title": "Full Name",
"zip_code": "383430"
}
pickupAddress.zip_code Type: string
| This field holds zip code for the city. Example:122001 |
|
tracking_data Type: array
| This field contains details about overall stages a shipment has undergone. Example: "tracking_data":[
{
"date": "2016-09-17T18:06:00",
"description": "Pickup Cancelled",
"location": "Gurgaon, India",
"comment": ""
},
{
"date": "2016-09-17T15:49:00",
"description": "Pickup Scheduled",
"location": "Gurgaon, India",
"comment": ""
},
{
"date": "2016-09-16T16:09:00",
"description": "Record created.",
"location": "Gurgaon, India",
"comment": ""
}
]
tracking_data.date Type: string
| Date of the shipment stage.
| tracking_data.description Type: string
| Brief description about the stage of shipment.
|
|