Credit Card Payin – Sandbox Test Values
Use the following values to simulate successful and failed credit card transactions in the sandbox environment. These values are intended for testing purposes only and will not work in production.
✅ Successful Transactions
The following card details are guaranteed to return a successful PAID
status. While other values may also work, only the ones listed below are explicitly supported for consistent results.
Brand | Card Number | CVC |
---|---|---|
Visa | 4111 1111 1111 1111 | 555 |
MasterCard | 5454 5454 5454 5454 | 555 |
- Expiration Date: Use any valid date later than today.
- Cardholder Name: Can be any value.
❌ Simulating Failed Transactions
To trigger specific failure responses, set the address1
field in the billing address to one of the following values:
FAILED
– Simulates a general-purpose payment failure.UNKNOWN
– Simulates an inconsistent or unexpected status that typically requires support investigation.
These values are interpreted by the sandbox to return deterministic failure outcomes, useful for testing edge cases and error handling.
Example:
Using
"address1": "FAILED"
in your request will return a failed payment response.
Updated 22 days ago