Internal Transfer
Developing
Tranfer transaction between PSP and Merchant
Request
Body Params application/json
{
"fromParticipantCode": "string",
"toParticipantCode": "string",
"currency": "string",
"amount": "string",
"clientReference": "string"
}
Request Code Samples
curl --location --request POST 'https://dev-api.mce.sg/v1.0/payment/account/internalTransfer' \
--header 'Content-Type: application/json' \
--data-raw '{
"fromParticipantCode": "string",
"toParticipantCode": "string",
"currency": "string",
"amount": "string",
"clientReference": "string"
}'
Responses
application/json {
"code": "string",
"msg": "string",
"data": {
"transferId": "string",
"fromParticipantCode": "string",
"toParticipantCode": "string",
"currency": "string",
"amount": "string",
"clientReference": "string"
}
}
Modified at 2026-01-07 08:44:54