Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

This API can be used to update a customer's email and name.

Endpoint

PUT: https://sandbox.monnify.com/api/v1/customer/update/{currentCustomerEmail}

Please note that this endpoint is protected using OAuth2 Token. Visit Authentication  section of this document for details on OAuth2 Token.

Sample Request

Update Customer Details Request
{
    "customerFullName":"Chidera Nwoke",
    "customerEmail":"chima@gmail.com"
}

Sample Response

Get Transaction Status Request
{
    "requestSuccessful": true,
    "responseMessage": "success",
    "responseCode": "0",
    "responseBody": {
        "customerFullName": "Chidera Nwoke",
        "customerEmail": "chima@gmail.com"
    }
}

Field Reference

Request

FieldDescriptionCompulsory

currentCustomerEmail

Current email for configured for the customer on Monnify. This email currently identifies the customer.

Yes
customerEmailUpdated customer's email. Could be same thing as the current customer email.Yes
customerFullNameUpdated customer's name. Could be the same if customer's name is not changing.No
  • No labels