Getting an MPAN, merchant token or merchantTokenIdentifier

We are trying to retrieve merchant tokens from ApplePay. We used the javascript codes from Apple Pay demo site to request for a recurring payment from the frontend.

"recurringPaymentRequest": {
    "paymentDescription": "A description of the recurring payment to display to the user in the payment sheet.",
    "regularBilling": {
        "label": "Recurring",
        "amount": "4.99",
        "paymentTiming": "recurring",
        "recurringPaymentStartDate": "2023-08-11T11:20:32.369Z"
    },
    "trialBilling": {
        "label": "7 Day Trial",
        "amount": "0.00",
        "paymentTiming": "recurring",
        "recurringPaymentEndDate": "2023-08-11T11:20:32.369Z"
    },
    "billingAgreement": "A localized billing agreement displayed to the user in the payment sheet prior to the payment authorization.",
    "managementURL": "https://applepaydemo.apple.com",
    "tokenNotificationURL": "https://applepaydemo.apple.com"
}

Payment was successful, but merchantTokenIdentifier is not shown in the in decrypted ApplePay token, regardless of test card used. We tried Visa and MasterCard.

Getting an MPAN, merchant token or merchantTokenIdentifier
 
 
Q