Available services
Logistics services available to users with POS or Delivery roles
Estimate Delivery Service
POST https://integrations.mipos.shop/api/v1/logistic/third_party/estimate/service
Estimate the delivery value of an order, without making the service request
Headers
Content-Type
string
application/json
Authorization
string
Bearer {access_token}
Request Body
store_id
string
ID of the store in the platform
delivery_info
object
Order information to calculate the estimated value
{
"message": "Estimated values",
"data": {
"estimate_value": 1150, // This value includes 2 decimal places($11.50).
"estimate_time": 50 // This time is in minutes,
"integration_id": 8
}
}{
"message": [
"You don't have this store available.",
"The order pickup information is required.",
"The order delivery information is required.",
"The address information is required.",
"The address latitude is required.",
"The address longitude is required.",
"The contact phone information is required.",
"The contact name information is required.",
"The address information is required.",
"The address latitude is required.",
"The address longitude is required.",
"The contact phone information is required.",
"The contact name information is required.",
"Values could not be estimated."
],
"data": null
}{
"store_id": [
"The store id field is required.",
"The store id must be a string.",
],
"delivery_info": [
"The delivery info field is required."
]
}Request Delivery Service
POST https://integrations.mipos.shop/api/v1/logistic/third_party/request/service
Request the package delivery service to the logistics system
Headers
Content-Type
string
application/json
Authorization
string
Bearer {access_token}
Request Body
store_id
string
ID of the store in the platform
delivery_info
object
Order information to calculate the estimated value
Last updated
Was this helpful?