Skip to main content

Products

Ikawaari exposes a merchant product catalog used by billing and subscription workflows.

Implemented merchant routes

Current product routes include:

  • GET /api/v1/merchant/products
  • GET /api/v1/merchant/products/{id}
  • POST /api/v1/merchant/products
  • PATCH /api/v1/merchant/products/{id}
  • PATCH /api/v1/merchant/products/{id}/active
  • DELETE /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
ParameterTypeDescription
pageintegerPage number
limitintegerNumber of results per page
statusstringFilter 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}