mono-logo

Update a Customer

July 30th, 2025

patch api.withmono.com/v2/customers/{id}
v1.0

This resource is to update some information about a single customer.

Path Params
Body
Headers

Request

12345678910111213141516171819
curl --request PATCH \
     --url https://api.withmono.com/v2/customers/id \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'mono-sec-key: string' \
     --data '
    {
        "identity": {
            "type": "bvn",
            "number": "string"
        },
        "address": "string",
        "phone": "string"
        "type": "business", // change from individual to business
        "first_name": "string",
        "last_name": "string",
        "business_name": "string",
    }
'

Response

Choose an option from the drop down or click one of these buttons to see an example:

Did this page help you?