📦 Managing products
Create new products
Products can be anything you buy or sell, it could be merchandise or services. A product can have an available quantity on multiple warehouses and show different prices based on price lists.
- Endpoint: https://api-billing.koywe.com/V1/products
- Method: POST
- Required headers:
- Content-Type: application/json
- Authorization: Bearer <token>
- Accept: */*
Create new product categories
Products can optionally belong to a category. Categories can also have a hierarchy by having a parent category.
- Endpoint: https://api-billing.koywe.com/V1/product_categories
- Method: POST
- Required headers:
- Content-Type: application/json
- Authorization: Bearer <token>
- Accept: */*
Create new product locations
Locations can be warehouses, shipping vehicles, stores or any other place where you store products.
- Endpoint: https://api-billing.koywe.com/V1/product_locations
- Method: POST
- Required headers:
- Content-Type: application/json
- Authorization: Bearer <token>
- Accept: */*
Create new product price list
Price lists allow you to define different prices for the same product in order to provide custom pricing to your customers.
- Endpoint: https://api-billing.koywe.com/V1/product_price_lists
- Method: POST
- Required headers:
- Content-Type: application/json
- Authorization: Bearer <token>
- Accept: */*