Added

Updated HelcimPay response

In order to improve the level of detail returned by HelcimPay.js when a payment is processed, we have updated the response to include the card type used for the payment. The cardType parameter will include a two character string value that indicates the type of card used during processing.

// Example response body containing new cardType value

{
    "hash": "b553fdae5dfa86e12444d52b31cf957496930377a049864c2308f9e19c79d7c3",
    "data": {
        "transactionId": "44158194",
        "dateCreated": "2026-02-04 11:40:21",
        "cardBatchId": "6005228",
        "status": "APPROVED",
        "type": "purchase",
        "amount": "100",
        "currency": "CAD",
        "avsResponse": "X",
        "cvvResponse": "M",
        "approvalCode": "T3E3ST",
        "cardToken": "LFEY40ReTNOXkBu0y9LDDA",
        "cardNumber": "5454545454",
        "cardHolderName": "Helcim Test",
        "cardType": "MC",
        "customerCode": "CST65559",
        "invoiceNumber": "INV100101",
        "warning": ""
    }
}