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

Partner Location

GET
https://api.boxnmove.comhttps://api.boxnmove.com/businesss/partner-location/{OrderId}
Retrieves the current location of a delivery partner associated with the specific order.
Returns the latitude, longitude, and location time of the driver's latest known position.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.boxnmove.com/businesss/partner-location/XXXXXXXXXX' \
--header 'Authorization: Basic Og=='
Response Response Example
200 - Success
{
    "latitude": 28.49905684822255,
    "longitude": 77.03852983663182,
    "location_time": "2024-07-12T16:31:19"
}

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 *****************
Path Params
OrderId
string 
required
OrderId recieved when vehicle is booked.
Example:
XXXXXXXXXX

Responses

🟢200Success
application/json
Body
object  | null 
optional
latitude
number 
required
Latitude
longitude
number 
required
Longitude
location_time
string 
required
Location time in Indian Standard Time (IST)
🟠400Bad Request
🟠401Unauthorized
Previous
Cancel
Next
Pool
Built with