API Doc
languages
languages
  • English
  • 简体中文
languages
languages
  • English
  • 简体中文
  1. 3. Static VA
  • API Signature Process
  • API General Code
  • 1. Account
    • 1. Check Account Balance
      POST
  • 2. Payout
    • Disbursement Product Flow Chart
    • Disburse Channel List
    • 1. Disburse
      POST
    • 2. Check Disburse Status
      POST
    • 3. Disburse Notification
      POST
  • 3. Static VA
    • VA ChannelCode List
    • 1. Static VA Create
      POST
    • 2. Static VA Collection Query
      POST
    • 3. Static VA Collection Notification
      POST
    • 4. Static VA Collection Verification
      POST
  • 4. Dynamic VA
    • Payment ChannelCode List
    • 1. Collection Request
      POST
    • 2. Collection Transaction List
      POST
    • 3. Collection Notification
      POST
  • 5. Payment QR
    • QR Code ChannelCode List
    • 1. QR Code Create
      POST
    • 2. QR Code Detail
      POST
    • 3. QR Code Payment List
      POST
    • 4. QR Code Payment Notification
      POST
  • 6. Web Payment
    • Payment Channel List
    • 1. Create Payment
      POST
    • 2. Check Payment Status
      POST
    • 3. Payment Notification
      POST
  • 7. Split Payment
    • Split Payment Enumeration
    • 1. Relationship Proof File Upload
    • 2. Add Split Payment Receiver
    • 3. Query Split Payment Receiver
    • 4. Delete Split Payment Receiver
    • 5. Query Unsplit Amount
    • 6. Split Payment
    • 7. Query Split Payment Result
    • 8. Split Payment Return
    • 9. Query Split Payment Return Result API
languages
languages
  • English
  • 简体中文
languages
languages
  • English
  • 简体中文
  1. 3. Static VA

1. Static VA Create

POST
/open-api/static/payment/code

Request

Header Params

Body Params application/json

Example
{
    "appId": "your appid",
    "sign": "sign by param",
    "param": "{\"mchOrderId\":\"TestMchOrderIdP0002\",\"channelCode\":\"BRI_VA\",\"amount\":10000,\"email\":\"test@123.com\",\"mobile\":\"081234567\",\"customerName\":\"test\",\"remark\":\"test payment code\",\"notifyUrl\":\"https://test.com\",\"timestamp\":1678698098000}"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/open-api/static/payment/code' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appId": "your appid",
    "sign": "sign by param",
    "param": "{\"mchOrderId\":\"TestMchOrderIdP0002\",\"channelCode\":\"BRI_VA\",\"amount\":10000,\"email\":\"test@123.com\",\"mobile\":\"081234567\",\"customerName\":\"test\",\"remark\":\"test payment code\",\"notifyUrl\":\"https://test.com\",\"timestamp\":1678698098000}"
}'

Responses

🟢200
application/json
Body

Example
{
  "code": 10000,
  "message": "Success",
  "data": {
    "mchOrderId": "TestMchOrderIdP0002",
    "customerName": "test",
    "expireTime": null,
    "status": "ACTIVE",
    "paymentCode": {
      "channelCode": "BNI_VA",
      "referenceNumber": "8558121202474754"
    }
  }
}
Modified at 2026-01-08 09:49:41
Previous
VA ChannelCode List
Next
2. Static VA Collection Query
Built with