Get Quote
The 'Get quote' service allows for obtaining shipping quotes from carriers integrated with Baggage Freight . It provides cheapest Shipping rates for Domestic and International .
Request
| Quote |
| URI |
http://www.baggagefreight.com.au/api/apiminrate.aspx |
| Method |
POST
|
| Authentication Required |
Yes |
Parameters
| Name |
Required |
Type |
Description |
Email
|
required |
String |
Storeowner Login Email |
Password
|
required |
String |
Storeowner Login Password |
Server
|
optional |
String |
Site Url |
Tech
|
optional |
String |
Technology(Wordpress, Drupal etc.) |
cCountry
|
required |
String |
Collection Country |
cCity
|
required |
String |
Collection City |
cState
|
required |
String |
Collection State |
cPin
|
required |
String |
Collection Pin code |
dCountry
|
required |
String |
Destination Country |
dState
|
required |
String |
Destination State |
dCity
|
required |
String |
Destination City |
dPin
|
required |
String |
Destination Pin code |
Weight
|
required |
String |
Item Weight in KG.
[use comma(,) separator for multiple items.] |
Length
|
required |
String |
Item Length in CM.
[use comma(,) separator for multiple items.] |
Width
|
required |
String |
Item Width in CM.
[use comma(,) separator for multiple items.] |
Height
|
required |
String |
Item Height in CM.
[use comma(,) separator for multiple items.] |
Unit
|
required |
String |
Item Unit in CM.
[use comma(,) separator for multiple items.] |
Amount
|
optional |
String |
This is cart total amount. |
Request body
'Email' => 'test@test.com',
'Password' => 'password',
'Server' => 'test.com',
'Tech' => 'Wordpress',
'cCountry' => 'Australia',
'cCity' => 'BRISBANE',
'cState' => 'QLD',
'cPin' => '4000',
'dCountry' => 'Australia',
'dState' => 'SA',
'dCity' => 'ADELAIDE',
'dPin' => '5000',
'Weight' => '10,5',
'Length' => '10,10',
'Width' => '10,10',
'Height' => '15,15',
'Unit' => 'cm,cm',
'Amount' => 130
Response
Shipping Cost : Carrier : Shipping Service : Transit Time : Warranty
Example Response
34.50 : TNT : TNT Road Express : 3 : 7
Example Code(PHP cUrl)