Developer

Developer Documentation

Integrate PayBridge payment gateway into your website or application.

WooCommerce Plugin

Accept payments on your WordPress/WooCommerce store with our easy-to-install plugin.

  • FPX Online Banking
  • Credit/Debit Card
  • E-Wallet
  • Auto order status update
Download Plugin

REST API

Build custom integrations using our REST API.

  • OAuth2 Authentication
  • Create Payment Bills
  • Check Payment Status
  • Webhook Callbacks
View API Docs

Quick Start Guide

Step 1: Get API Credentials

Login to your PayBridge account, go to Merchants section, and create a new merchant app to get your Client ID and Secret.

Step 2: Get Access Token
POST https://paybridge.my/merchant/api/verify
Content-Type: application/json

{
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}
Step 3: Create Payment
POST https://paybridge.my/merchant/api/transaction-info
Authorization: Bearer {access_token}
Content-Type: application/json

{
  "amount": "100.00",
  "currency": "MYR",
  "payer": "Mts",
  "successUrl": "https://yoursite.com/success",
  "cancelUrl": "https://yoursite.com/cancel"
}
Step 4: Redirect Customer

Use the approvalUrl from the response to redirect your customer to the payment page.

API Endpoints

EndpointMethodDescription
/merchant/api/verifyPOSTGet access token
/merchant/api/transaction-infoPOSTCreate payment transaction
/merchant/paymentGETPayment page
/merchant/payment/successGETPayment success callback
/merchant/payment/cancelGETPayment cancel callback

Need Help?

Contact our support team at support@paybridge.my