Getting started
Syok2Pay is the merchant-facing edge of the Syok2Pay payment platform. Your backend talks to the payment-gateway API; we handle routing to FPX, e-wallets and cards, and the secure hosted checkout.
Base URL
https://pay.syok2pay-sandbox.comBase URLs
| Environment | Base URL |
|---|---|
| Sandbox | https://pay.syok2pay-sandbox.com |
| Production | https://pay.syok2pay.com |
What you need
- A merchant code (e.g.
M00001) - A publishable key (
pk_…) — sent as theAuthorization: Bearertoken - A secret key (
sk_…) — used to HMAC-sign every request (never sent)
Get these from your Syok2Pay onboarding contact. placeholder
Integration in three steps
- Initiate a payment session from your backend (
POST /v1/initiate). - Redirect the customer to the returned
data.payment_url. - Finalize the order when we call your
backend_return_url.
Continue to Authentication.