Register Wallet Address
Designing
Request
Body Params application/json
{
"participantCode": "string",
"label": "string",
"description": "string",
"blockchain": "string",
"walletAddress": "string",
"isOwner": true,
"walletType": 1,
"platformName": "string",
"platformUserId": "string",
"ownerInfo": {
"ownerType": 1,
"details": {
"name": "string",
"DOB": "2019-08-24",
"identityNumber": "string",
"residentialAddress": {
"country": "string",
"state": "string",
"city": "string",
"postcode": "string",
"addressLine1": "string"
}
}
}
}
Request Code Samples
curl --location --request POST 'https://dev-api.mce.sg/v1.0/payment/crypto/registerWalletAddress' \
--header 'Content-Type: application/json' \
--data-raw '{
"participantCode": "string",
"label": "string",
"description": "string",
"blockchain": "string",
"walletAddress": "string",
"isOwner": true,
"walletType": 1,
"platformName": "string",
"platformUserId": "string",
"ownerInfo": {
"ownerType": 1,
"details": {
"name": "string",
"DOB": "2019-08-24",
"identityNumber": "string",
"residentialAddress": {
"country": "string",
"state": "string",
"city": "string",
"postcode": "string",
"addressLine1": "string"
}
}
}
}'
Responses
application/json {
"code": "string",
"msg": "string",
"data": {
"label": "string",
"description": "string",
"blockchain": "string",
"walletAddress": "string",
"isOwner": true,
"walletType": 1,
"platformName": "string",
"platformUserId": "string",
"ownerInfo": {
"ownerType": 1,
"details": {
"name": "string",
"DOB": "2019-08-24",
"identityNumber": "string",
"residentialAddress": {
"country": "string",
"state": "string",
"city": "string",
"postcode": "string",
"addressLine1": "string"
}
}
}
}
}
Modified at 2025-12-30 08:38:27