API
User Manual
  • Introduction to API v2
  • Guides
    • Getting started
    • Authorization
    • Delivery Notes Integrations
  • API Reference
    • General
      • Data types
        • Validation
        • Prices
      • Schema
      • Flags
      • ETags
        • ETag examples
      • Filtering
      • Sorting
      • Paging
      • Methods
      • HTTP Status Codes
    • Enums
      • Payment methods
      • Units
      • Order status
  • Entity
    • Attendance
    • Branch
    • Category
    • Cloud
    • Course
    • Customer
    • Customer Account
    • Customer Account Log
    • Daily Menu
    • Daily Menu Product
    • Delivery Note
    • Discount group
    • EET subject
    • Employee
    • Money log
    • Order
    • Order item
    • Product
    • Product Customization
    • Product Ingredient
    • Reservation
    • Stock Packaging
    • Supplier
    • Table
    • Tag
    • Tax (VAT rates)
    • Warehouse
    • Warehouse Branch
  • Others
    • Reports
      • Base Sales Report
    • POS actions
    • Release notes
    • Breaking changes
    • Webhook
    • Third-party libraries
  • Migration
    • Migrating from API v1
    • API v1 Services
      • Branch Service
      • Category Service
      • Customer Service
      • Employee Service
      • OAuth2 Login Service
      • POS action service
      • Product Service
      • Reservation Service
      • Sale Service
      • Stock Service
      • Supplier Service
      • Tableseat Service
      • Tag Service
      • Warehouse Service
Powered by GitBook
On this page
  • Get Product
  • Get All Products with stockstatus
  • Get Product with stockstatus
  • Delete Product
  • Get All Products for Cloud
  • Get All Ingredients for Product
  • Create Product
  • Update Product Field
  • Get All Ingredients for Cloud
  • Create/Update Ingredient for Product
  • Delete Ingredient for Product

Was this helpful?

Export as PDF
  1. Migration
  2. API v1 Services

Product Service

Get Product

GET /api/product/:cloudId/:id

GET /v2/clouds/:cloudId/products/:productId

Get All Products with stockstatus

GET /api/product/:cloudId/:warehouseId/list

GET /v2/clouds/:cloudId/warehouses/:warehouseId/products

Get Product with stockstatus

GET /api/product/withstockstatus/:cloudId/:warehouseid/:productid

GET /v2/clouds/:cloudId/warehouses/:warehouseId/products/:productId

Delete Product

GET /api/product/:cloudId/:productId/delete

DELETE /v2/clouds/:cloudId/products/:productId

Get All Products for Cloud

GET /api/product/:cloudId

GET /v2/clouds/:cloudId/products

Get All Ingredients for Product

GET /api/product/:cloudId/:productId/ingredients

GET /v2/clouds/:cloudId/product-ingredients?filter=_parentProductId|eq|:productId

GET /v2/clouds/:cloudId/products?filter=id|eq|:productId&include=ingredients

Create Product

POST /api/product/:cloudId/create

POST /v2/clouds/:cloudId/products

Update Product Field

POST /api/product/:cloudId/:productId/update

Replace or create PUT /v2/clouds/:cloudId/products PUT /v2/clouds/:cloudId/products/:productId

Partial update PATCH /v2/clouds/:cloudId/products/:productId

Get All Ingredients for Cloud

GET /api/product/:cloudId/ingredients

GET /v2/clouds/:cloudId/product-ingredients

Create/Update Ingredient for Product

POST /api/product/:cloudId/ingredients/edit

POST/PUT /v2/clouds/:cloudId/product-ingredients

Partial update PATCH /v2/clouds/:cloudId/product-ingredients/:ingredientId

Delete Ingredient for Product

GET /api/product/:cloudid/ingredients/:ingredientId/delete

DELETE /v2/clouds/:cloudId/product-ingredients/:ingredientId

PreviousPOS action serviceNextReservation Service

Last updated 4 years ago

Was this helpful?