fetchr / shiphappy
Fetchr is a technology solution that makes shipping as delightful as shopping.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=5.3.0
- nategood/httpful: *
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is not auto-updated.
Last update: 2024-08-09 18:42:40 UTC
README
Brief Introduction
Fetchr PHP/SDK enables PHP developers to use Fetchr shipping and tracking APIs in their code.
Requirements
- PHP >= 5.3.0
- curl enabled
Installation
You can install this package via Composer by adding this package in the require section
"require": {
"fetchr/php-sdk": "1.0.0"
}
Getting Started
Initialize the SDK
#!php
<?php
require 'vendor/autoload.php';
$fetchr = new \fetchr\php_sdk\Shiphappy("CLIENT_USERNAME","CLIENT_PASSWORD");
Get Order Status
#!php
$fetchr->getOrderStatus('TRACKING_ID');
Get the status of more than one order
#!php
$fetchr->getBulkStatus(array('TRACKING_ID_1', 'TRACKING_ID_2'));
*Note: you can add as much tracking orders as you like in the array
Create Delivery Orders
#!php
<?php
$dataErp = array(
'username' => 'CLIENT_USERNAME', // Provided by Fetchr Account Manager
'password' => 'CLIENT_PASSWORD', // Provided by Fetchr Account Manager
'method' => 'create_orders',
'pickup_location' => 'CLIENT_STORE_ADDRESS', // Your Store Address
'data' => array(
array(
'order_reference' => 'CLIENT_USERNAME'.'_'.'ORDER_ID',
'name' => 'CUSTOMER_FIRST_NAME'.' '.'CUSTOMER_LAST_NAME',
'email' => 'CUSTOMER_EMAIL',
'phone_number' => ('CUSTOMER_PHONE'?'CUSTOMER_PHONE':'N/A'),
'address' => 'CUSTOMER_ADDRESS',
'city' => CUSTOMER_CITY,
'payment_type' => PAYMENT_TYPE, // If cash on delivery then COD otherwise CD
'amount' => 'GRAND_TOTAL',// If the payment type was credit card then it must be 0 else put the real value of the total,
'description' => 'DESCRIPTION',
'comments' => 'COMMENTS',
),
),
);
$fetchr->createDeliveryOrder($dataErp);
*Note : all the capital-case words must be replaced with variables
Create Fulfillment Orders
#!php
<?php
$dataErp[] = array(
'order' => array(
'items' => array(
'client_ref' => 'ORDER_ID',
'name' => 'ITEM_NAME',
'sku' => 'ITEM_SKU',
'quantity' => 'QUANITITY'
'merchant_details' => array(
'mobile' => 'STORE_MOBILE_NUMBER',
'phone' => 'STORE_PHONE_NUMBER',
'name' => 'STPRE_NAME',
'address' => 'STORE_ADDRESS',
),
'COD' => 'DELIVERY_RATE',
'price' => 'ITEM_PRICE',
'is_voucher' => 'NO',
),
'details' => array(
'status' => '',
'discount' => 'DISCOUNT_VALUE',
'grand_total' => 'GRAND_TOTAL',// If the payment type was credit card then it must be 0 else put the real value of the total
'customer_email' => 'CUSTOMER_EMAIL',
'order_id' => 'CLIENT_USERNAME'.'_'.'ORDER_ID',
'customer_firstname' => 'CUSTOMER_FIRST_NAME',
'payment_method' => PAYMENT_TYPE, // If cash on delivery then COD otherwise CD
'customer_mobile' => ('CUSTOMER_PHONE'?'CUSTOMER_PHONE':'N/A'),
'customer_lastname' => 'CUSTOMER_LAST_NAME',
'order_country' => 'COUNTRY_CODE', // Two letters code, ex: United Arab Emarites => AE, Jordan => JO ...etc
'order_address' => CUSTOMER_ADDRESS.', '.CUSTOMER_CITY.', '.CUSTOMER_COUNTRY_CODE_TWO_LETTERS,
),
),
);
$fetchr->createFulfilmentOrder($dataErp);
*Note: you can add as much items as you like in the items array