To update merchant details.
Request
Body Params application/json
{
"participantCode": "string",
"merchantDetails": {
"personalDetails": {
"occupation": "string",
"industry": "string"
},
"financialInformation": {
"expectedTradingVolumePerMonth": 1,
"expectedTradingFrequencyPerMonth": 1
}
},
"status": 1
}
Request Code Samples
curl --location --request POST 'https://dev-api.mce.sg/v1.0/crm/addressBook/updateMerchant' \
--header 'Content-Type: application/json' \
--data-raw '{
"participantCode": "string",
"merchantDetails": {
"personalDetails": {
"occupation": "string",
"industry": "string"
},
"financialInformation": {
"expectedTradingVolumePerMonth": 1,
"expectedTradingFrequencyPerMonth": 1
}
},
"status": 1
}'
Responses
application/json {
"code": 0,
"msg": "string",
"data": {
"participantCode": "string",
"applicationType": 1,
"clientReference": "string",
"merchantDetails": {
"personalDetails": {
"name": "string",
"dateOfBirth": "string",
"nationality": "string",
"residentialAddress": {
"country": "string",
"state": "string",
"city": "string",
"postcode": "string",
"addressLine1": "string",
"addressLine2": "string"
}
}
},
"requiredDocuments": [
"string"
],
"merchantStatus": 1,
"updateAt": 0
}
}
Modified at 2026-01-28 03:10:26