Create Beneficiary
Paynow
This section demonstrates how to create a beneficiary for PayNow.
Field | Type | Description |
---|---|---|
payment_method | string | Must be "LOCAL" |
bank_details.bank_country_code | string | Must be "SG" |
bank_details.account_currency_code | string | Must be "SGD" |
bank_details.clearing_system | string | Must be "PayNow" |
additional_info.proxy_id | string | PayNow identifier; must be UEN, phone number, or VPA depending on actual user info. |
string | Optional field. | |
nickname | string | Optional field. |
entity_type = COMPANY
{
"email": "[email protected]",
"entity_type": "COMPANY",
"payment_method": "LOCAL",
"nickname": "optional nick name",
"bank_details": {
"bank_country_code": "SG",
"account_currency_code": "SGD",
"clearing_system": "PayNow"
},
"additional_info": {
"proxy_id": "UEN, phone number, or VPA"
}
}
entity_type = INDIVIDUAL
{
"email": "[email protected]",
"entity_type": "INDIVIDUAL",
"payment_method": "LOCAL",
"nickname": "optional nickname",
"bank_details": {
"bank_country_code": "SG",
"account_currency_code": "SGD",
"clearing_system": "PayNow"
},
"additional_info": {
"proxy_id": "UEN, phone number, or VPA"
}
}
MockData
entityType | proxyId | 说明 |
---|---|---|
INDIVIDUAL | S1234567A | NRIC 测试用户 |
INDIVIDUAL | +6591234567 | 手机号(MSISDN)测试用户 |
COMPANY | UEN1234567X | UEN 公司测试用户 |
COMPANY | abc#xyz | 企业 VPA 测试用户 |
Updated 16 days ago