Request Parameters:


Submits the return request for order.


URL: ../Api/Client/GetTrackingDetails 


Header:

Content-Type:application/json


Required Parameters :  CustomerGUID, OrderId, ShipmentId


Case-1. Exception Response :
Parameter:

{    

     "ApiSecretKey":"i99b98d117m116a112o98k115c111",

     "CustomerGUID":"496DBB2A-F9EB-4522-A804-B108693B69CE",

     "OrderId": "1",

     "ShipmentId": "1"

}
Response :
{

    "Status": 0,

    "Message": "Order not found for shipment id : 1",

    "Data": null,

    "ValidationMessage": [],

    "ErrorMessage": null

}


Case-2. Success Response :
Parameter:

{    

     "ApiSecretKey":"i99b98d117m116a112o98k115c111",

     "CustomerGUID":"496DBB2A-F9EB-4522-A804-B108693B69CE",

     "OrderId": "10",

     "ShipmentId": "1001"

}

Response :

{

    "Status": 1,

    "Message": "Success",

    "Data": {

        "TrackingNumber": "100009",

        "TrackingDateWiseDetails": [

            {

                "Date": "Monday, 24 December",

                "TrackingTimeWiseDetails": [

                    {

                        "Time": "4:57 PM",

                        "EventName": "Package arrived at an Amazon facility",

                        "Location": "GUJARAT, SURAT",

                        "CountryCode": "IN"

                    },

                    {

                        "Time": "6:01 AM",

                        "EventName": "Package arrived at an final delivery station",

                        "Location": "SURAT",

                        "CountryCode": "IN"

                    }

                ]

            },

            {

                "Date": "Tuesday, 25 December",

                "TrackingTimeWiseDetails": [

                    {

                        "Time": "4:57 PM",

                        "EventName": "Package arrived at an Amazon facility",

                        "Location": "GUJARAT, SURAT",

                        "CountryCode": "IN"

                    },

                    {

                        "Time": "6:01 AM",

                        "EventName": "Package arrived at an final delivery station",

                        "Location": "SURAT",

                        "CountryCode": "IN"

                    }

                ]

            },

            {

                "Date": "Wednesday, 26 December",

                "TrackingTimeWiseDetails": [

                    {

                        "Time": "4:57 PM",

                        "EventName": "Package arrived at an Amazon facility",

                        "Location": "GUJARAT, SURAT",

                        "CountryCode": "IN"

                    },

                    {

                        "Time": "6:01 AM",

                        "EventName": "Package arrived at an final delivery station",

                        "Location": "SURAT",

                        "CountryCode": "IN"

                    }

                ]

            }

        ]

    },

    "ValidationMessage": [],

    "ErrorMessage": null

}