Advertisement
Guest User

Richard Quadling

a guest
Sep 19th, 2008
764
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.02 KB | None | 0 0
  1. Content of array sent to $client->processShipping();
  2.  
  3. array (
  4.   'WebAuthenticationDetail' =>
  5.   array (
  6.     'UserCredential' =>
  7.     array (
  8.       'Key' => 'kzlkoS0BP13zYx60',
  9.       'Password' => 'bDTUEKvUJvN5YkXNEmxJk9jzK',
  10.     ),
  11.   ),
  12.   'ClientDetail' =>
  13.   array (
  14.     'AccountNumber' => '510087283',
  15.     'MeterNumber' => '1241063',
  16.   ),
  17.   'TransactionDetail' =>
  18.   array (
  19.     'CustomerTransactionId' => '*** Express Domestic Shipping Request v3 using PHP ***',
  20.   ),
  21.   'Version' =>
  22.   array (
  23.     'ServiceId' => 'ship',
  24.     'Major' => '3',
  25.     'Intermediate' => '0',
  26.     'Minor' => '0',
  27.   ),
  28.   'RequestedShipment' =>
  29.   array (
  30.     'ShipTimestamp' => '2008-09-16T07:27:39-07:00',
  31.     'DropoffType' => 'REGULAR_PICKUP',
  32.     'ServiceType' => 'FEDEX_2_DAY',
  33.     'PackagingType' => 'YOUR_PACKAGING',
  34.     'TotalWeight' =>
  35.     array (
  36.       'Value' => 0.3,
  37.       'Units' => 'LB',
  38.     ),
  39.     'Shipper' =>
  40.     array (
  41.       'Contact' =>
  42.       array (
  43.         'CompanyName' => 'Luv-U-Diamonds',
  44.         'PhoneNumber' => '2155675900',
  45.       ),
  46.       'Address' =>
  47.       array (
  48.         'StreetLines' =>
  49.         array (
  50.           0 => '50 S. 16th Street, 22nd Floor',
  51.         ),
  52.         'City' => 'Philadelphia',
  53.         'StateOrProvinceCode' => 'PA',
  54.         'PostalCode' => '19102',
  55.         'CountryCode' => 'US',
  56.       ),
  57.     ),
  58.     'Recipient' =>
  59.     array (
  60.       'Contact' =>
  61.       array (
  62.         'PersonName' => 'Victoria Schwanda',
  63.         'PhoneNumber' => '9083915626',
  64.       ),
  65.       'Address' =>
  66.       array (
  67.         'StreetLines' =>
  68.         array (
  69.           0 => '5 Deer Run',
  70.           1 => '',
  71.         ),
  72.         'City' => 'Stanton',
  73.         'StateOrProvinceCode' => 'NJ',
  74.         'PostalCode' => '08885',
  75.         'CountryCode' => 'US',
  76.       ),
  77.       'Residential' => true,
  78.     ),
  79.     'ShippingChargesPayment' =>
  80.     array (
  81.       'PaymentType' => 'SENDER',
  82.       'Payor' =>
  83.       array (
  84.         'AccountNumber' => '510087283',
  85.         'CountryCode' => 'US',
  86.       ),
  87.     ),
  88.     'SpecialServicesRequested' =>
  89.     array (
  90.       'SpecialServiceTypes' =>
  91.       array (
  92.         0 => 'FUTURE_DAY_SHIPMENT',
  93.         1 => 'EMAIL_NOTIFICATION',
  94.       ),
  95.       'EmailNotificationDetail' =>
  96.       array (
  97.         'Recipients' =>
  98.         array (
  99.           0 =>
  100.           array (
  101.             'EmailNotificationRecipientType' => 'SHIPPER',
  102.             'EMailAddress' => 'luvudiamonds@gmail.com',
  103.             'NotifyOnShipment' => 1,
  104.             'NotifyOnException' => 1,
  105.             'NotifyOnDelivery' => 1,
  106.             'EmailNotificationFormatType' => 'Text',
  107.           ),
  108.         ),
  109.       ),
  110.     ),
  111.     'LabelSpecification' =>
  112.     array (
  113.       'LabelFormatType' => 'COMMON2D',
  114.       'ImageType' => 'PNG',
  115.     ),
  116.     'RateRequestTypes' =>
  117.     array (
  118.       0 => 'ACCOUNT',
  119.     ),
  120.     'PackageCount' => 1,
  121.     'RequestedPackages' =>
  122.     array (
  123.       'Weight' =>
  124.       array (
  125.         'Value' => 0.3,
  126.         'Units' => 'LB',
  127.       ),
  128.     ),
  129.   ),
  130. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement