Product Inventory
Search against all available inventory for a product or only for a specific quantity.
zapiCheckProductInventory
GET
https://{yourdomainname}.zaui.net/zapi/
Request Body
Name
Type
Description
zapiToken*
integer
Token that must be used for a reseller to communicate with the supplier system.
quantity
integer
Number of items to search against. If not provided, total inventory will be returned.
productId*
integer
ID of the product.
methodName*
String
The method being called.
zapiUserId*
integer
Generated by the supplier system when a new contact is created.
zapiAccountId*
integer
Generated by the supplier system.
<?xml version="1.0" encoding="utf-8"?>
<response>
<zapiVersion>2.1</zapiVersion>
<error>0</error>
<message>OK</message>
<methodResponse>
<methodName>zapiCheckProductInventory</methodName>
<productId>6</productId>
<productName>Ski Poles</productName>
<totalRequested>0</totalRequested>
<inventoryRemaining>10000</inventoryRemaining>
<methodErrorCode>0</methodErrorCode>
<methodErrorMessage/>
<inventoryCheckCode>0</inventoryCheckCode>
<inventoryCheckMessage>Inventory OK</inventoryCheckMessage>
</methodResponse>
</response>
<request>
<zapiToken></zapiToken>
<zapiAccountId></zapiAccountId>
<zapiUserId></zapiUserId>
<zapiMethod>
<methodName>zapiCheckProductInventory</methodName>
<productId></productId>
<quantity></quantity>
</zapiMethod>
</request>
Last updated
Was this helpful?