Products
Ikawaari exposes a merchant product catalog used by billing and subscription workflows.
Implemented merchant routes
Current product routes include:
GET /api/v1/merchant/productsGET /api/v1/merchant/products/{id}POST /api/v1/merchant/productsPATCH /api/v1/merchant/products/{id}PATCH /api/v1/merchant/products/{id}/activeDELETE /api/v1/merchant/products/{id}
Legacy-compatible merchant paths may also be available under api/merchant/*.
List products
GET /api/v1/merchant/products?page=1&limit=20&status=active
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number |
limit | integer | Number of results per page |
status | string | Filter by product status |
Create a product
POST /api/v1/merchant/products
Update a product
PATCH /api/v1/merchant/products/{id}
Activate or deactivate a product
PATCH /api/v1/merchant/products/{id}/active
Delete a product
DELETE /api/v1/merchant/products/{id}