IDEN
Wacommerce

API Reference

Core Public API endpoints with Meta-style routing.

Base URL: `https://dashboard.wacommerce.id/api/public/v1`. Auth: `Authorization: Bearer nxk_live_xxx`.

Core endpoints

httpGET    /me
GET    /chats
GET    /chats/{phone}
GET    /orders
POST   /orders
POST   /messages

`POST /orders` creates an order and supports `payment.method` plus an optional `payment.bank`, e.g. `{ "billingType": "qris", "payment": { "method": "qris" } }` or `{ "billingType": "virtual_account", "payment": { "method": "virtual_account", "bank": "bni" } }`. See Create Order & Payment Methods.

Example GET /me

bashcurl https://dashboard.wacommerce.id/api/public/v1/me \
  -H "Authorization: Bearer nxk_live_xxx"

Meta-style routing

For parity with the WhatsApp Cloud API, sends may also be addressed as `POST /v1/{phone_number_id}/messages`.