Update Card Status
Update Status Request service uses POST method to change the card status(Active or Inactive or LostOrStolen) for a registered card.
- Active - Card is usable and transactions are allowed
- Inactive - Card is not usable and transactions are not allowed
- LostOrStolen - Card is closed and transactions no more possible
Endpoint
/MFSAfricaCard/v1/updateStatusRequest
Request
{
"last4Digits": "1234",
"mobilePhoneNumber": "1234567890",
"newCardStatus": "Active"
}
Field (* required field) | Type | Description |
---|---|---|
last4Digits* | string | Last4Digits of card associated with phone number |
mobilePhoneNumber* | string | Mobile Number associated with card |
newCardStatus* | string | Valid values include: “Active”, “Inactive”,“LostOrStolen”. Quotes are not to be included |
Response
{
"errorCode": "0000",
"errorMessage": "SUCCESS"
}
Field | Type | Description |
---|---|---|
errorCode | string | Error Code |
errorMessage | string | Error Message |
Updated over 1 year ago