Card provisioning not working from Apple Wallet Extension

We have developed Apple Wallet Extension for our App. The in-app provisioning for the card is working. However when we try to add the card from Wallet extension it gives error saying "Your issuer does not yet offer support for this card".

From the apple documentation we can see the issues is same as mentioned in Scenario 2 at following link https://applepaydemo.apple.com/in-app-provisioning#8.4

We are getting eligibilityStatus as 0

Below is the response from Wallet captured using SysDiagnosis

https://crt-pod1-smp-device.apple.com:443/broker/v4/devices/0434320BCB1A90022306073796318273728D0A367FA927F4/cards 200 Time profile: 1.77856 seconds
{
	x-conversation-id = ......
	Content-Type = "application/json"
	x-pod = "crt-pod1"
	x-xss-protection = "1; mode=block"
	Server = "Apple"
	x-pod-region = "paymentpass.com.apple"
	regionbrokerurl = "https://crt-pod1-smp-device.apple.com:443/broker"
	Date = "Wed, 06 Aug 2025 11:39:30 GMT"
	Content-Length = "488"
	x-envoy-upstream-service-time = "1400"
	Strict-Transport-Security = "max-age=31536000; includeSubdomains"
	cross-origin-opener-policy = "same-origin"
	x-keystone-correlationid = ......
	x-content-type-options = "nosniff"
	Vary = "accept-language"
	x-frame-options = "SAMEORIGIN"
}

{
    applicationIdentifier = ......;
    auxiliaryCapabilities =     {
    };
    cardType = 4;
    deviceProvisioningDataExpected = 1;
    eligibilityStatus = 0;
    identifier = ......;
    learnMoreURL = "https://www.apple.com/ae/apple-pay/banks/ae/en-ae.html";
    nonce = ......;
    paymentApplications =     (
                {
            appletTypeIdentifier = Argon;
            paymentType = Credit;
        }
    );
    region = "paymentpass.com.apple";
    sanitizedPrimaryAccountNumber = 7008;
    sanitizedPrimaryAccountPrefix = "";
}
Card provisioning not working from Apple Wallet Extension
 
 
Q