For more information about this gateway, please refer to https://developer.moneris.com/Documentation/NA/E-Commerce%20Solutions/API
- Gateway type code:
moneris
- Production API endpoint: https://www3.moneris.com/gateway2/servlet/MpgRequest
- Sandbox API endpoint: Not Supported
To add a Moneris gateway, use the following settings:
{
"store_id" : "Your API Key ID",
"api_token" : "Your API Token"
}
Turning off CVV & Turning on AVS
Some Moneris accounts are configured such that they do not allow a CVV to be passed to them. If that is the case for your account, you can pass the extra Boolean parameter cvv_enabled
when adding the gateway so we do not pass the CVV to the gateway,
Another option is to perform AVS checking, If you’d like to perform such checking, you can pass the extra Boolean parameter avs_enabled
when adding the gateway:
{
"store_id" : "Your API Key ID",
"api_token" : "Your API Token",
"cvv_enabled" : "false",
"avs_enabled" : "true"
}