Public API
  • Overview
  • Authentication
    • Create a developer account
    • Generate account access token
    • Refresh access token
  • Store management
    • Countries
    • Create store
    • User stores
  • Integration management
    • Information of delivery integrations
    • Enable delivery integration
    • Disable delivery integration
  • Delivery Orders For POS
    • Webhook management
    • Webhook Content
    • Retreive Delivery Orders
    • Successful order creation
    • Order Creation failed
  • Menu Management
    • Upload menu to delivery app
  • Third Party Market Apps
    • Third Party Webhook Management
    • Third Party Send Order
    • Third Party Webhooks Content
  • Inventory
    • Inventory system management
    • POS sync inventory
  • Logistic
    • Logistic integrations management
    • POS integrations management
    • Available services
Powered by GitBook
On this page

Was this helpful?

  1. Integration management

Disable delivery integration

Disable delivery integration

POST https://integrations.mipos.shop/api/v1/integration/disable

Disable selected integration for this store

Headers

Name
Type
Description

Authorization

string

Bearer {access_token}

Request Body

Name
Type
Description

store_id

string

Id of the store in the platform

integration_id

string

Id of the integration in the platform

{
    "message": [
        "Successfully deactivation integration."
    ],
    "data": null
}
"Unauthorized."
{
    "message": [
        "This name is not available.",
        "You don't have this store available.",
        "Integration not available.",
        "Microservice does not have this integration configured.",
        "Could not change the status of integration.",
        "Unable to get token.",
        "This store does not have the store delivery id."
    ],
    "data": null
}
{
    "store_id": [
        "The store id field is required.",
        "The selected store id is invalid."
    ],
    "integration_id": [
        "The integration id field is required.",
        "The selected integration id is invalid."
    ]
}

GET https://mipos.shop/api/v1/orders/{store_id}

Headers

Name
Type
Description

Authorization

string

Bearer {access_token}

PreviousEnable delivery integrationNextWebhook management

Last updated 5 years ago

Was this helpful?