PaymentDetails
idintegerrequired
Payment ID
Example:
456amountdecimalrequired
Payment amount
Example:
150currencystringrequired
Currency code
Example:
USDstatusstringrequired
Payment status
Example:
completedpaymentMethodstringrequired
Method used for payment
Possible values: [crypto, bank_transfer, credit_card, argentine_bank]
Example:
cryptotransactionHashstringnullable
Blockchain transaction hash (for crypto payments)
Example:
0x1234567890abcdef...createdAtdate-timerequired
Payment initiation timestamp
Example:
2025-01-01T12:00:00.000ZcompletedAtdate-timenullable
Payment completion timestamp
Example:
2025-01-01T12:30:00.000ZPaymentDetails
{
"id": 456,
"amount": 150,
"currency": "USD",
"status": "completed",
"paymentMethod": "crypto",
"transactionHash": "0x1234567890abcdef...",
"createdAt": "2025-01-01T12:00:00.000Z",
"completedAt": "2025-01-01T12:30:00.000Z"
}