Purolator - Tracking

Carrier: Purolator
Action: Tracking
Description: Example implementation for Purolator Tracking
{
    "carrier": "purolator",
    "action": "Track",
    "params": {
      "username": "YOUR_USERNAME",
      "password": "YOUR_PASSWORD",
      "key": "YOUR_API_USER_TOKEN",
      "tracking_number": "1Z12345E0205271688",
      "test": true
    }
}

<?php
$rs = new RocketShipIt;
$response = $rs->request(
array (
  'carrier' => 'purolator',
  'action' => 'Track',
  'params' => 
  array (
    'username' => 'YOUR_USERNAME',
    'password' => 'YOUR_PASSWORD',
    'key' => 'YOUR_API_USER_TOKEN',
    'tracking_number' => '1Z12345E0205271688',
    'test' => true,
  ),
)
);

rs.request(
  {'action': 'Track',
 'carrier': 'purolator',
 'params': {'key': 'YOUR_API_USER_TOKEN',
            'password': 'YOUR_PASSWORD',
            'test': True,
            'tracking_number': '1Z12345E0205271688',
            'username': 'YOUR_USERNAME'}}

)

rs.request(
  {"carrier"=>"purolator",
 "action"=>"Track",
 "params"=>
  {"username"=>"YOUR_USERNAME",
   "password"=>"YOUR_PASSWORD",
   "key"=>"YOUR_API_USER_TOKEN",
   "tracking_number"=>"1Z12345E0205271688",
   "test"=>true}}

)

rocketshipit.request(
  {
    "carrier": "purolator",
    "action": "Track",
    "params": {
      "username": "YOUR_USERNAME",
      "password": "YOUR_PASSWORD",
      "key": "YOUR_API_USER_TOKEN",
      "tracking_number": "1Z12345E0205271688",
      "test": true
    }
}
)
← Back to All Examples

Other Purolator Examples

Label
Example implementation for Purolator Label
Label International
Example implementation for Purolator Label International
Label Saturday Delivery
Example implementation for Purolator Label Saturday Delivery
Label Signature Required
Example implementation for Purolator Label Signature Required
Label Third Party Billing
Example implementation for Purolator Label Third Party Billing
Label with References
Example implementation for Purolator Label with References
Rates
Example implementation for Purolator Rates
Void
Example implementation for Purolator Void