SimulatePaymentRequest
Request to simulate a payment against a payment request in sandbox environments
paymentRequestIduuidrequired
The payment request ID returned from POST /v1/collections/payment-requests
Example:
d4f7a8b2-1234-5678-9abc-def012345678paymentMethodstringrequired
The payment method to simulate
Possible values: [BANK_TRANSFER, CRYPTO, CARD]
Example:
BANK_TRANSFERamountnumber
Amount to simulate. If omitted, the full remaining balance is used
Example:
1000cryptoCurrencystring
Cryptocurrency to simulate (USDT or USDC). Defaults to USDT. Only applicable when paymentMethod is CRYPTO
Example:
USDTSimulatePaymentRequest
{
"paymentRequestId": "d4f7a8b2-1234-5678-9abc-def012345678",
"paymentMethod": "BANK_TRANSFER",
"amount": 1000,
"cryptoCurrency": "USDT"
}