TransactionEvent
Transaction change events.
Change identifier.
Type of the notification event:
- Insert - Denotes insert operation.
- Update - Denotes update operation. The entity should contain only updated fields.
- Delete - Denotes delete operation.
Possible values: [Update
, Create
, Delete
]
Update
transaction objectrequired
Transaction update information.
Transaction id
5040057608
Transaction Slip Id.
5009964049
Wallet customer id.
500014306996
Account Id associated with this transaction.
5014567344
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
Represents RFC 3339, section 5.6 date-time.
2021-07-15T17:54:12Z
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 type of the instrument.
| Value | Description| |---|---| | SEPA_BANK_ACCOUNT| SEPA Bank account | | UK_BANK_ACCOUNT | UK Bank account | | US_BANK_ACCOUNT | US Bank account | | CCI_BANK_ACCOUNT | CCI Bank account | | CARD | Card |
Possible values: [SEPA_BANK_ACCOUNT
, UK_BANK_ACCOUNT
, US_BANK_ACCOUNT
, CCI_BANK_ACCOUNT
, CARD
]
CARD
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.
Merchant reference number associated witht the transaction.
5040452805
Additional reference information for the recipient passed by the sender of the transaction. This information is not valid or present for all transaction types:
- For TRANSFER_OUT contains the transfer recipient customer id.
- For PAYOUT contains the third party withdrawal recipient id.
{
"id": "string",
"timestamp": "2021-07-15T17:54:12Z",
"operationType": "Update",
"transaction": {
"id": "5040057608",
"slipId": "5009964049",
"customerId": "500014306996",
"accountId": "5014567344",
"type": "DEPOSIT",
"amount": 1000,
"currencyCode": "EUR",
"creationTime": "2021-07-15T17:54:12Z",
"direction": "CREDIT",
"paymentType": "CARD",
"instrumentId": "string",
"instrumentType": "CARD",
"status": "COMPLETED",
"statusReason": "string",
"merchantRefNum": "5040452805",
"recipientReference": "string"
}
}