This API is used to create a Virtual Account before initiating a Payin using KRW currency. A Payin is the primary method for collecting funds from customers. In this API, you need to provide a valid bank account when working in the production environment. You can refer to this page for the KRW Payin flow Payin - KRW (Server to Server).Each POST/PATCH Request requires a Signature in the header, you can follow the following code to create the Signature: const crypto = require('crypto'); const signature = crypto.createHmac('sha256', signatureKey)
.update(JSON.stringify(data)).digest('hex');