POS integrations management

Get logistic integrations

GET https://integrations.mipos.shop/api/v1/logistic/pos/list

Provides a list of delivery integrations registered in the platform

Headers

[
    {
        "id": 8,
        "name": "logistic company"
    }
]

Change status logistic integration

POST https://integrations.mipos.shop/api/v1/logistic/pos/change/status

Enable the selected integration for this store

Headers

Request Body

{
    "message": "Successful change of status.",
    "data": null
}

Manage Status Delivery Webhook

POST https://integrations.mipos.shop/api/v1/logistic/pos/webhook/status/manage

Create or update webhook for changes of delivery status of an order .

Headers

Request Body

{
    "message": "Webhook successfully configured.",
    "data": null
}

The events you will receive in this webhook will have the following structure.

{
    "service_identifier": "abc123",
    "status": "....",
    "location": {
        "lat": ....,
        "lng": ....
    }
}

Manage Location Delivery Webhook

POST https://integrations.mipos.shop/api/v1/logistic/pos/webhook/location/manage

Create or update webhook for changes of location of an order .

Headers

Request Body

The events you will receive in this webhook will have the following structure.

{
    "service_identifier": "abc123",
    "location": {
        "lat": ....,
        "lng": ....
    }
}

Last updated