MOVER BUSINESS API
  1. Orders
MOVER BUSINESS API
  • Orders
    • Estimate / Coverage
      POST
    • Book Vehicle
      POST
    • Invoice
      GET
    • Status
      GET
    • Cancel
      POST
    • Partner Location
      GET
    • Pool
      POST
  • Utility
    • Segregate Delivery Locations
      POST
  • Webhooks
  1. Orders

Pool

Developing
POST
https://api.boxnmove.comhttps://api.boxnmove.com/business/order-pool
Allows the creation of a new order in the Mover order pool for an associated enterprise. Mover efficiently processes the order internally and returns a unique Service ID that can be used to track the order status.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.boxnmove.com/business/order-pool' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
    "type": "parcel",
    "ship_mode": "on_demand",
    "pickup_loc": {
        "lat": 28.414093434043952,
        "lon": 77.02948514420679,
        "address": "Gurgaon",
        "delivery_note": "",
        "contact_mobile": "9999999999",
        "contact_name": "Jhon Doe",
        "udf1": ""
    },
    "drop_loc": {
        "lat": 28.394813204711046,
        "lon": 77.0308444087546,
        "address": "Gurgaon",
        "delivery_note": "",
        "contact_mobile": "9999999999",
        "contact_name": "Jhon Doe",
        "udf1": ""
    },
    "vehicle_id": 4,
    "goods_type_id": 1,
    "stops": [
        {
            "lat": 28.415650408416976,
            "lon": 77.03899832427274,
            "address": "Stop 1 Gurgaon",
            "delivery_note": "",
            "contact_mobile": "9999999999",
            "contact_name": "Jhon Doe",
            "udf1": ""
        },
        {
            "lat": 28.403344874110218,
            "lon": 77.04225989014573,
            "address": "Stop 2 Gurgaon",
            "delivery_note": "",
            "contact_mobile": "9999999999",
            "contact_name": "Jhon Doe",
            "udf1": ""
        }
    ],
    "insure_goods": false,
    "optimise_route": false,
    "no_of_packages": 1,
    "goods_worth": 0
}'
Response Response Example
{
    "ServiceId": "1523106e-4f9f-4ddb-954b-31fef1e12678",
    "StatusId": 1,
    "message": "Order Created!"
}

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json
type
string 
required
ship_mode
string 
required
pickup_loc
object 
required
Store/Depot Location
lat
number 
required
lon
number 
required
address
string 
required
delivery_note
string 
required
contact_mobile
string 
required
contact_name
string 
required
udf1
string 
required
client_ref_id
string 
required
delivery_code
string 
required
drop_loc
object 
required
Delivery Location
lat
number 
required
lon
number 
required
address
string 
required
delivery_note
string 
required
contact_mobile
string 
required
contact_name
string 
required
udf1
string 
required
client_ref_id
string 
required
delivery_code
string 
required
vehicle_id
integer 
required
goods_type_id
integer 
required
insure_goods
boolean 
required
optimise_route
boolean 
required
no_of_packages
integer 
required
goods_worth
integer 
required
Examples

Responses

🟢200Success
application/json
Body
ServiceId
string 
required
StatusId
integer 
required
message
string 
required
Previous
Partner Location
Next
Segregate Delivery Locations
Built with