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 5 Current »

Customers are created when you create a reserved account or initialise a transaction. 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 by OAuth 2.0 Bearer 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