m2pfintech
API LibraryCustomer Management

Update Proof of Identity Information

Updates the communication or contact information (proof of identity) for an existing debit card customer. This API allows changing the mobile number, email address, and notification preferences associated with a customer entity.

POST
/update-manager/poi

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 proof of identity is being updated.

communicationInfo*

Updated list of communication contacts for the customer.

Response Body

application/json

curl -X POST "https://api.dcms.example.com/v1/update-manager/poi" \  -H "tenant: ACME_BANK" \  -H "Content-Type: application/json" \  -d '{    "entityId": "req11",    "communicationInfo": [      {        "contactNo": "9876543210",        "emailId": "changetest98765@gmail.com",        "notification": true      }    ]  }'
{
  "result": {
    "entityId": "req11"
  },
  "exception": null,
  "pagination": null
}