Skip to content

Additional information

James Goodwin edited this page Dec 6, 2016 · 16 revisions

Supported card networks

The default card networks accepted by our Xamarin SDK are Visa and MasterCard, Maestro, and Amex. If your judo account does not support Maestro cards or Amex cards, the card input form can show a relevant error message by these particular card networks to not be supported:

var judo = new Judo
{
    // Add the following to existing Judo configuration to disable Maestro
    MaestroAccepted = false,

    // Add the following to existing Judo configuration to disable Amex
    AmexAccepted = false
};

Address Verification Service (AVS)

If your judo account has AVS enabled, you will need to configure the SDK and show AVS form fields to capture the customer's country and postcode while performing a payment:

var judo = new Judo
{
    // Add the following to existing Judo configuration
    AvsEnabled = true
};