m2pfintech
API LibraryCustomer Management

Update Proof of Address Information

Updates the address information (proof of address) for an existing debit card customer. This API allows changing the permanent or communication address details including street addresses, city, state, country, district, and postal code.

POST
/update-manager/poa

Authorization

tenantAuth
tenant<token>

The DCMS tenant name for multi-tenant isolation. Every API call must include this header to identify the client organization.

In: header

Header Parameters

tenant*string

The DCMS client or tenant name for multi-tenant isolation.

Request Body

application/json

entityId*string

Unique customer entity identifier whose address is being updated.

addressInfo*

Updated list of addresses for the customer.

Response Body

application/json

curl -X POST "https://api.dcms.example.com/v1/update-manager/poa" \  -H "tenant: ACME_BANK" \  -H "Content-Type: application/json" \  -d '{    "entityId": "req11",    "addressInfo": [      {        "address1": "Changed - addressM2P Solutions Pvt Ltd",        "address2": "Olympia Quest, Plot No:C1 & C56, SIDCO",        "address3": "Thiru Vi Ka, Industrial Estate, Guindy",        "addressCategory": "COMMUNICATION",        "city": "CHENNAI",        "country": "INDIA",        "district": null,        "isoCountryCode": null,        "pincode": "600032",        "state": "TAMILNADU"      }    ]  }'
{
  "result": {
    "entityId": "req11"
  },
  "exception": null,
  "pagination": null
}