List suppliers
Returns a paginated list of suppliers for the current organization. Supports search by name, code, or email and optional inclusion of inactive suppliers.
Returns a paginated list of suppliers for the current organization. Supports search by name, code, or email and optional inclusion of inactive suppliers.
Production session cookie set for the guidelab.co domain by Better Auth
In: cookie
Query Parameters
0 < value10 < value <= 10020falseResponse Body
application/json
curl -X GET "https://example.com/inventory/suppliers"{ "data": [ { "id": "string", "organizationId": "string", "name": "string", "code": "string", "contactName": "string", "email": "string", "phone": "string", "website": "string", "country": "string", "currency": "string", "isActive": true, "createdAt": "string", "updatedAt": "string", "property1": null, "property2": null } ], "pagination": { "page": 0, "limit": 0, "total": 0, "totalPages": 0 }}List stock adjustments GET
Returns a paginated list of stock adjustment history for the current organization. Supports filtering by item, reason, and date range.
Receive purchase order items POST
Records the receipt of items from a purchase order. Updates inventory quantities, creates stock adjustments, and transitions the PO status to 'partially_received' or 'received' based on whether all items are fully received.