Recharge Now for ₹1000 & Get ₹1500* In Your Wallet. Use Code: FLAT500 | Limited Period Offer On First Recharge
*T&C Apply. Offer applies only for the first wallet recharge after sign up. If the user has made any wallet spend/transaction, this offer is not applicable.
Recharge Now
GVKart

Seller ERP API

Product catalog totals & activate/deactivate

GET /api/v1/seller-erp/products returns every product you onboarded with inventory and order totals:

• total_qty — available + sold
• total_available_qty — current sellable stock
• total_sold_qty — units sold (excludes cancelled/returned)
• total_orders_received — distinct orders for the SKU
• total_fulfilled — distinct delivered orders
• total_orders_pending — distinct open orders
• is_active / customer_visible — seller switch and live shop visibility

To pull a SKU from the customer portal immediately (for example when out of stock), call PATCH /api/v1/seller-erp/products/{product_ref}/status with { "is_active": false }. Approval status is unchanged. Set is_active true to restore visibility when the product is still approved.

Batch updates: PATCH /products/status with a products array (max 100).

Download sample payloads from Seller API Connect or GET /api/v1/seller-erp/samples/payloads. Uses the same X-Seller-Api-Key / Secret / Mode headers as other Seller ERP endpoints.

See docs/SELLER_ERP_API.md and the Seller ERP Integration Guide.