Logiwa API Documentation
This is the complete API documentation for connecting to the Logiwa API using MindCloud's Universal API. If you are new to MindCloud, start with the Introduction to see how one API can sit in front of many different apps.
MindCloud is an integration company that offers one normalized API to access 3,100+ apps from a single place. It cleans up provider-specific quirks, keeps requests and responses consistent, and centralizes authentication so you do not need to manage separate flows for every app. Browse other apps.
Meet Logiwa: connect business data and workflows through MindCloud's Universal API. Keep reading to get started.
Quickstart
Before you run your first Logiwa request, you need three things:
- A MindCloud account — sign in or create an account at MindCloud.
- A MindCloud API Key — create one in API Keys. Keep it on your server.
- At least one Logiwa connection — create or choose one in Connections. Note its
connectionId.
Every Logiwa action uses the same URL pattern:
https://connect.mindcloud.co/v1/universal/logiwa/latest/actions/{actionSlug}You need a MindCloud API Key and a Logiwa connection. Then call an action such as Get Billing Calculation Consolidated Report:
curl --request GET \
--url "https://connect.mindcloud.co/v1/universal/logiwa/latest/actions/get-billing-calculation-consolidated-report" \
--header "Authorization: Bearer $MINDCLOUD_API_KEY" \
--get \
--data-urlencode "connectionId=$CONNECTION_ID"Every response comes back in the same envelope, with your rows in a data array:
{
"success": true,
"data": [
{ "id": "1042", "name": "Ava" }
],
"meta": {}
}After your first request works, use Shape your requests to control arguments, pagination, filtering, fields, and errors.
Authentication
Authentication has two layers. Your MindCloud API Key authenticates the request to MindCloud, sent as a Bearer token in the Authorization header. The connectionId selects the connected Logiwa account that should run the action. MindCloud stores and refreshes the Logiwa credentials behind that connection, so you never send provider tokens with your requests.
Pass connectionId in the query string for GET and DELETE actions, and in the JSON body for POST, PUT, and PATCH actions. Keep your MindCloud API Key on your server; do not ship it in browser code, mobile apps, public repositories, or logs.
Logiwa actions
All 50 published actions for this Logiwa version. Each page documents the endpoint, arguments, and response controls.
- PUTAdjust Inventory
- POSTAvailable to Promise Report by SKU
- POSTCancel Shipment Order
- POSTCreate Channel Setup
- POSTCreate Inventory
- POSTCreate Product
- POSTCreate Products in Bulk
- POSTCreate Return Orders
- POSTCreate Shipment Order Document
- POSTCreate Vendor
- DELETEDelete Shipment Order
- GETGet Billing Calculation Consolidated Report
- GETGet Product
- GETGet Purchase Order Detail
- GETGet Purchase Order Detail With Code
- GETGet Shipment Order
- GETList Billing Reports
- GETList Carrier Packages
- GETList Carrier Shipment Details
- GETList Carriers
- GETList Channel Setup
- GETList Clients
- GETList Currency Types
- GETList Kit Inventory
- GETList Order Operation Tasks
- GETList Pack Types
- GETList Products
- GETList Purchase Order
- GETList Receiving History
- GETList Retailers
- GETList Return Orders
- GETList Return Orders v3.3
- GETList Shipment History
- GETList Shipment Order Tags
- GETList Shipment Orders
- GETList Warehouse
- GETList Webhook Subscriptions
- GETListRetailersTest
- PUTPatch Product
- PUTPatch Shipment Order
- GETPurchase Order Receiving History
- POSTReceive Purchase Order
- POSTShip by License Plate
- POSTShip ShipmentOrder
- POSTSubscribe to Webhook
- PUTUpdate Billing Report
- PUTUpdate Product
- PUTUpdate Purchase Order
- PUTUpdate Shipment Order
- POSTUpsert Product Listing
Related apps
More Content & Files apps on the Universal API, behind the same REST shape. Or browse all apps.