# [PAXUM-7169](https://jira.paydek.com/browse/PAXUM-7169) New transaction details DTOs
## Checklist implemented types of transfers:
- [x] transferFunds
- [x] transferFundsByWire
- [x] transferFundsByEft
- [x] transferFundsBetweenAccounts
- [x] withdrawFundsToCard
- [x] massTransferFunds
- [x] massTransferFundsCreditCard
- [x] massTransferFundsWire
- [x] massTransferFundsEft
#### P2P TransferFunds
```json=
{
transferType: "transferFunds",
toEmail: "test@mail.com",
amount: "100.00",
currency: "USD",
note: "Some text",
}
```
#### EFT and Wire transfers
```json=
{
transferType: "transferFundsByWire", // transferFundsByEft
amount: "100.00",
currency: "USD",
bankName: "Best bank ever",
customerName: "Tester Shmit",
customerStreet: "Longbridge 4",
customerCity: "London",
customerStateCode: "London",
customerCountryCode: "MA",
customerZip: "40000",
customerAccountNumber: "MA64230450965045321100220089",
}
```
#### Between accounts transfer
```json=
{
transferType: "transferFundsBetweenAccounts",
withdrawalAmount: "100.00",
withdrawalCurrency: "USD",
enrollmentAmount: "83.00",
enrollmentCurrency: "EUR",
}
```
#### Withdraw funds to card
```json=
{
transferType: "withdrawFundsToCard",
amount: "1",
currency: "EUR",
cardNumber: "437772XXXXXX0189",
}
```
#### Mass P2P or Credit card transfers
```json=
{
transferType: "massTransferFunds", // massTransferFundsCreditCard
amount: "100.00",
accountName: "USD PAYMENT ACCOUNT",
currency: "USD",
fees: "27.35",
totalAmount: "127.35",
quantity: 150, // Кол-во транзакций
}
```
#### Mass Wire or Eft transfers
```json=
{
transferType: "massTransferFundsWire", // massTransferFundsEft
summaries: [
{
amount: "100.00",
accountName: "USD PAYMENT ACCOUNT",
currency: "USD",
fees: "27.35",
totalAmount: "127.35",
quantity: 150, // Кол-во транзакций
}
]
}
```