Clickpost has an option to enable security on the tracking page. We have built a feature on top of the tracking page that restricts access to the tracking page without a secured key unique to each shipment present in the URL.


If security is enabled on the tracking page:


  1. All customer actions: Failed delivery form, Delivery Rating form for “Delivered” shipment will be visible only if the URL has a security key in its parameters.
  2. Order ID will not show up on the tracking page.
  3. Tracking details will be visible always with or without a security key


Tracking Page URL Format with and without the security key:


Default tracking page URL: https://tracking-demo.clickpost.in/?waybill=59576770665XYZ&cp_id=4


Tracking page URL with Security enabled: https://tracking-demo.clickpost.in/?waybill=59576770665XYZ&cp_id=4&key=734b8799-ac5f-4a97-98d9-ed2398715959



How to get the security key for a shipment:


  • If you are integrated with Clickpost’s order creation API: in order creation API response, we send security_key in the API response for that shipment. Example:
{
  "meta": {
    "message": "Order Placed Successfully",
    "status": 200,
    "success": true
  },
  "result": {
    "courier_partner_id": 1,
    "courier_name": "Fedex",
    "sort_code": null,
    "security_key": "560fee51-1af3-4d1d-a6e8-0149b0868d38",
    "reference_number": "ASDF1234",
    "waybill": "785578015860",
    "label": "https://pyck-res-bucket.s3.amazonaws.com:443/fedex/2017-02-11/785578015860.pdf"
  }
} 
  • If you are integrated with Clickpost’s AWB Registration API: in the AWB Registration API response, we send the security_key in the API response for that shipment. Example:
{
  "meta": {
    "message": "SUCCESS",
    "status": 200,
    "success": true
  },
  "result": {
    "security_key": "530470b0-8ebd-40c3-9c9e-6ca6bf1d29b8",
    "consumer_details": {
      "id": 1
    },
    "shipment_info": {
      "id": 1
    },
    "tracking_id": 1188264
  }
}



However, you can fetch the security key for any shipment using the "Fetch Shipment Security Key API".

(https://documenter.getpostman.com/view/4565637/TzY1iGmW#c82791cd-86c5-4041-9507-c44c8b160c73)


In case you wish to enable this feature for your tracking place, feel free to write us at support@clickpost.in and we shall help you with the further steps!