Update Customer email and phone
Customer Update Request service uses POST method to update registered mobile phone number and/or email address. The customer ID is required to send customer update request.
Endpoint
/MFSAfricaCard/v1/customerUpdateRequest
Request
{
"customerID": 12702380,
"emailAddress": "[email protected]",
"mobilePhoneNumber": "2561122334455"
}
Field (* required field) | Type | Description |
---|---|---|
customerID* | integer($int64) | This field contains the Customer ID |
emailAddress* | string | Email Address associated with customer |
mobilePhoneNumber* | string | Mobile Number associated with customer |
Response
{
"errorCode": "0000",
"errorMessage": "SUCCESS",
"updateCount": 2
}
Field | Type | Description |
---|---|---|
errorCode | string | Error Code |
errorMessage | string | Error Message |
updateCount | integer($int32) | This field contains the Update Count 1 OR 2 |
Updated over 1 year ago