- Overview
- Countries & currencies
- Integration
- Process flows
- Testing
- Additional information
- Consumer experience
- Reporting
Testing
Patagonia 365 testing capabilities are limited in the pre-production environment. We advise you to do penny tests (payment made with a minimum amount) in the production environment for end-to-end testing.
Supported countries and currencies
| Currency code | Currency | Decimals | Country |
|---|---|---|---|
| ARS | Argentine Peso | 0 | Argentina |
Positive case
Below are the positive test case input definitions with the expected results in the last 4 columns. Positive in this context means that the payments get an authorization. Be aware that the Fraud service can have influence on the final payment status.
| Card number | CVC | Amount | Currency code | Country code | Payment product ID | Expected status |
|---|---|---|---|---|---|---|
| 5046 5600 0000 0016 | 123 | 2000 | ARS | AR | 9013 | 975 |
Negative case
| Card number | CVC | Amount | Currency code | Country code | Payment product ID | Expected status |
|---|---|---|---|---|---|---|
| 5046 5600 0000 0000 | 111 | 2000 | ARS | AR | 9013 | 100 |
Possible statuses for a sale and for a refund transaction:
- Created (0)
- Rejected (100)
- Settlement in progress (975)
Sample test request:
"order": {
"amountOfMoney": {
"currencyCode": "ARS",
"amount": 10000
},
"customer": {
"billingAddress": {
"countryCode": "AR"
}
}
},
"cardPaymentMethodSpecificInput": {
"paymentProductId": 9013,
"card": {
"cardNumber": "5046560000000016",
"expiryDate": "1229",
"cardholderName": "John Doe",
"cvv": "123"
}
}
}