Skip to main content

PaymentDTO

The PaymentDTO object represents payment data, including information about the amounts related to the payment transaction.

Field Descriptions

NameTypeDescription
datestringDate and time of the payment transaction in ISO 8601 format.
takerSumMoneyDTOAmount sent/received in the invoice's currency.
makerSumMoneyDTOAmount received/sent by the merchant's store.
feeSumMoneyDTOThe fee charged for processing the payment.

Example

{
"takerSum": {
"amount": "3650.00",
"currency": "RUB",
"subunit": 2
},
"makerSum": {
"amount": "35.00527476",
"currency": "USDT",
"subunit": 8
},
"feeSum": {
"amount": "2.97544836",
"currency": "USDT",
"subunit": 8
},
"date": "2024-11-23T20:43:07+00:00"
}