Transaction
Contains information for wallet transaction.
Transaction id
544232
Transaction slip Id.
5009964049
Wallet customer id.
5435323362
Account Id associated with this transaction.
212345
Represents the type of the transaction.
Possible values: [DEPOSIT
, WITHDRAWAL
, PAYOUT
, CHARGEBACK_REVERSAL
, RETURNED_WITHDRAWAL
, CHARGEBACK
, MERCHANT_FEE
, TRANSACTION_FEE
, DAILY_TRANSACTIONS_FEE
, TRANSFER_IN
, TRANSFER_OUT
, TRANSFER_RETURN
, REFUND
, CURRENCY_EXCHANGE
, PAYSAFE_FEE
, PREPAID_CARD
, PREPAID_CARD_AUTHORIZATION
, APPLICATION_FEE
, SET_UP_FEE
, MONTHLY_MAINTENANCE_FEE
]
DEPOSIT
Transaction amount in minor units.
1000
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters
and <= 3 characters
EUR
fees object[]
Customer fees attached to the transaction.
Amount of the merchant payment, in mintor units. If currency
is not specified, then the main transaction currency is used.
0
1000
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters
and <= 3 characters
EUR
Fee payment reason.
- SENDER_FEE - Fee that will be applied to sender party of transfer collected into partner merchant wallet.
- RECIPIENT_FEE - Fee that will be applied to recipient client of transfer collected into partner merchant wallet.
- DEPOSIT_FEE - Fee charged for deposit transactions collected into partner merchant wallet.
- WITHDRAWAL_FEE - Fee charged for withdrawal transactions collected into partner merchant wallet.
- MERCHANT_FEE - Fee for the payment service collected into partner merchant wallet.
- PAYSAFE_FEE - Fee collected by Paysafe for the provided payment service. Usually Paysafe Fee is not directly applied to customer transactions.
- ATM_FEE - Fee for ATM service, when using prepaid cards.
- FX_FEE - Fee applied, when payment requires currency exchange.
- OTHER_FEE - It could be used for any additional, unspecified fees that may be applied to a transaction
Possible values: [MERCHANT_FEE
, ATM_FEE
, FX_FEE
, PAYSAFE_FEE
, OTHER_FEE
, SENDER_FEE
, RECIPIENT_FEE
, DEPOSIT_FEE
, WITHDRAWAL_FEE
]
OTHER_FEE
Transaction direction.
Possible values: [CREDIT
, DEBIT
]
Type of instrument. Used as discriminator for different Payment types.
- CARD
- BANK_TRANSFER
- RAPID_TRANSFER
- TRANSFER
Possible values: [CARD
, BANK_TRANSFER
, RAPID_TRANSFER
, TRANSFER
]
Represents the status of a transaction.
- PENDING - Transaction is created and further action is required by the customer.
- PROCESSING - Transaction is scheduled for processing by the payment provider.
- COMPLETED - Transaction is completed. Note that some transactions might be completed from Embedded Wallet point of view, but not from customer point of view, since money movement might take some time outside of the Embedded Wallet network.
- FAILED - Transaction is failed. Check STATUS_REASON property for details.
- CANCELLED - Transaction have been cancelled
- REFUNDED - Valid only for deposit transactions.
- DECLINED - transaction is declined.
Possible values: [PENDING
, PROCESSING
, COMPLETED
, FAILED
, CANCELLED
, REFUNDED
, DECLINED
]
COMPLETED
Status reason for FAILED transactions. See TransactionStatusReason for available values.
Possible values: <= 60 characters
Customer identifier used in Partner system.
Possible values: non-empty
and <= 40 characters
af5c8b52-0afd-4799-85ab-fe659a076932
Balance of the account after the transaction in minor currency units.
Additional reference information for the recipient passed by the sender of the transaction. This information is not valid or present for all transaction types.
fxAmount object
(In Development)
Contains the amount in converted currency during currency conversion.
Converted amount (in minor units).
Currency conversion rate.
Currency alphabetic code as specified by ISO 4217
Possible values: >= 3 characters
and <= 3 characters
EUR
transferDetails object
Represents the details of a transfer.
The actual purpose of the transfer.
- INITIAL_BALANCE_MIGRATION - after customer onboarding, migrations of existing balances
- CRYPTO_BUY - the customer is buying crypto or other assets
- CRYPTO_SELL - the customer is selling crypto or other assets
- TRADING_PAIR - the transfer represents a trading pair transaction between customers with wallets
- DEPOSIT - crediting the customer's wallet via non-Paysafe deposit options
- WITHDRAWAL - debiting the customer's wallet via non-Paysafe withdrawal options
- MERCHANT_FEE - charging a merchant fee
- REFUND - refunding the customer on a previous transaction
- CANCELATION - cancelation of a previous transaction
- BONUS - customer is granted a bonus
- CURRENCY_EXCHANGE - converting one currency to another
- PURCHASE - the customer is purchasing goods or services from a merchant
- PAYOUT - the merchant is compensating a customer for goods or services
- PEER_TRANSFER - money transfer between customers with wallets
- OTHER - any reason not explicitly mentioned in the transfers
Possible values: [INITIAL_BALANCE_MIGRATION
, CRYPTO_BUY
, CRYPTO_SELL
, TRADING_PAIR
, DEPOSIT
, WITHDRAWAL
, MERCHANT_FEE
, REFUND
, CANCELATION
, BONUS
, CURRENCY_EXCHANGE
, PURCHASE
, PAYOUT
, PEER_TRANSFER
, OTHER
]
Human readable description for the transfer.
Possible values: <= 200 characters
peerDetails object
Represents the details of a peer.
Peer first name.
John
Peer last name.
Doe
instrumentDetails object
Represents details about a customer's payment instrument.
Instrument ID.
123456789
Represents the type of an instrument.
| Value | Description| |---|---| | CARD | Card | | PREPAID_CARD | Prepaid Card | | SEPA_BANK_ACCOUNT| SEPA Bank account | | US_BANK_ACCOUNT | US Bank account | | UK_BANK_ACCOUNT | UK Bank account | | CCI_BANK_ACCOUNT | CCI Bank account |
Possible values: [CARD
, PREPAID_CARD
, SEPA_BANK_ACCOUNT
, US_BANK_ACCOUNT
, UK_BANK_ACCOUNT
, CCI_BANK_ACCOUNT
]
{
"id": "544232",
"slipId": "5009964049",
"customerId": "5435323362",
"accountId": "212345",
"type": "DEPOSIT",
"amount": 1000,
"currencyCode": "EUR",
"fees": [
{
"amount": 1000,
"currency": "EUR",
"paymentReason": "OTHER_FEE"
}
],
"creationTime": "2021-07-15T17:54:12Z",
"lastChangeDate": "2021-07-15T17:54:12Z",
"direction": "CREDIT",
"paymentType": "CARD",
"status": "COMPLETED",
"statusReason": "string",
"merchantRefNum": "af5c8b52-0afd-4799-85ab-fe659a076932",
"balance": 0,
"recipientReference": "string",
"fxAmount": {
"amount": 0,
"rate": 0,
"currency": "EUR"
},
"transferDetails": {
"reason": "INITIAL_BALANCE_MIGRATION",
"description": "string"
},
"peerDetails": {
"firstName": "John",
"lastName": "Doe"
},
"instrumentDetails": {
"instrumentId": "123456789",
"instrumentType": "CARD"
}
}