m2pfintech
API LibraryCard Lifecycle

Regeneration of PIN Mailer

Regenerates a PIN mailer for an existing card. A PIN mailer is a physical document sent to the customer containing their card PIN. The addressType specifies which address (PERMANENT or COMMUNICATION) to use for delivery. The homeCurrencyCode is required for processing.

POST
/kit-manager/regeneratePinMailer

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

Customer entity identifier who owns the card.

kitNo*string

Kit number of the card for which PIN mailer is being regenerated.

addressType*string

Address type for PIN mailer delivery.

Value in"PERMANENT" | "COMMUNICATION"
homeCurrencyCode*string

ISO currency code for the home country.

Response Body

application/json

curl -X POST "https://api.dcms.example.com/v1/kit-manager/regeneratePinMailer" \  -H "tenant: ACME_BANK" \  -H "Content-Type: application/json" \  -d '{    "entityId": "676765",    "kitNo": "4561789",    "addressType": "COMMUNICATION",    "homeCurrencyCode": "564"  }'
{
  "result": {
    "entityId": "676765",
    "kitNo": "4561789",
    "addressType": "COMMUNICATION",
    "homeCurrencyCode": "564",
    "pinRegenerationStatus": true
  },
  "exception": null,
  "pagination": null
}