Get started
Start your integration by taking advantage of the value provided by Mikes Delivery Business APIs. The following instructions will guide you through every step in the process of extending Mikes Delivery Business features and capabilities within your solution.
Step 1: Get Started By Registering Your Self On
Mikes Delivery Business.
- Go To The Singup Page & Fill All The Required Fields.
- Signup Chargers Are Very Economical.
After A Successful Signup, Login To Your Account.
Step 2: Setting Up Your Account.
- Navigate To My Account Page.
- Fill In All The Required Fields Under My Profile Tab.
Get Live Rates
cURL
PHP
NodeJs
Response Example
To get live rates you need to make a GET call to the following url :
https://mikesdeliverybusiness.com/wp-json/logistics/rates
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| username | String | Your Registered Email Address. |
| password | String | Your Account Password. |
| zipcode | String | Drop off Zip / Post Code. |
| State | String | Drop off State. |
| Weight | float | Package Weight. |
Errors
The Rates API uses the following error codes:
| Error Code | Meaning |
|---|---|
| 401 | trouble connecting due to the provided credentials being incorrect. |
| 402 | your account was not set up ( missing required field "my account" tab ). |
| 301 | empty or invalid zip/postal code parameter. |
| 302 | empty or invalid state parameter. |
| 303 | empty or invalid package weight parameter. |
| 305 | zip code currently not in our domain. |
Request Shipping Service
cURL
PHP
NodeJs
Response Example
To request shipping service you need to make a GET call to the following url :
https://mikesdeliverybusiness.com/wp-json/logistics/order
QUERY PARAMETERS
| Field | Type | Description |
|---|---|---|
| username | String | Your Registered Email Address. |
| password | String | Your Account Password. |
| to_city | String | Drop off City. |
| to_email | String | Receiver Email Address. |
| to_firstname | String | Receiver First Name. |
| to_lastname | String | Receiver Last Name. |
| to_phone | String | Receiver Contact Number. |
| to_streetaddress | String | Receiver Street Address. |
| to_country | String | Receiver Country. |
| to_zipcode | String | Receiver Zip/Postal Code. |
| to_state | String | Receiver State. |
| weight | float | Package Weight. |
Errors
The Order API uses the following error codes:
| Error Code | Meaning |
|---|---|
| 401 | trouble connecting due to the provided credentials being incorrect. |
| 402 | your account was not set up ( missing required field "my account" tab ). |
| 201 | invalid data type or empty receiver city parameter. |
| 202 | invalid data type or empty receiver email parameter. |
| 203 | invalid data type or empty receiver first name parameter. |
| 211 | invalid data type or empty receiver last name parameter. |
| 212 | invalid data type or empty receiver phone number parameter. |
| 206 | invalid data type or empty receiver street address parameter. |
| 207 | invalid data type or empty receiver country parameter. |
| 208 | invalid data type or empty receiver zip code parameter. |
| 209 | invalid data type or empty receiver state parameter. |
| 303 | empty or invalid package weight parameter. |
| 305 | zip code currently not in our domain. |