Field | Type | Description |
---|
id | string | A unique identifier assigned to each transaction for tracking and reference purposes. |
direction | float | Indicates the flow of funds (e.g., CREDIT, DEBIT). |
amount | float | The monetary value involved in the transaction. This can be a positive or negative value depending on the transaction type. |
balance | float | The account's running balance after this transaction is applied. It helps in tracking the account's financial status at any given point. |
txn_type | string | The type of transaction (e.g., debit, credit, transfer). |
note | string | An optional field for adding descriptive information or comments about the transaction. This can include details such as the purpose of the transaction or any special conditions. |
ref_id | string | A reference ID that links the transaction to related entities or transactions. This is useful for tracking related transactions or cross-referencing with other systems. |
data | object | A flexible field to store any additional data related to the transaction. This can be used to store structured data that provides more context or details. |
create_time | datetime | The date and time when the transaction was created. This timestamp is important for auditing, reporting, and chronological tracking of transactions. |
The data field in the Transaction Object is designed to store additional information related to the transaction, varying based on the specific business context. This flexible structure allows for detailed and context-specific data to be included, enhancing the transaction's descriptive capability and utility.
Field | Type | Description |
---|
id | string | A unique identifier for the deposit transaction. |
network | string | The network used for the deposit (e.g., BANK_SEPA, NETWORK_USDT).See Supported Blockchain Networks or Bank Networks . |
asset_type | string | The type of asset being deposited (e.g., EUR, USDT). See Supported Currencies . |
amount | float | The total amount of the deposit. |
fee | float | The fee charged for processing the deposit. |
detail | object | The detailed information of the deposit transaction. |
version | string | The version of the deposit object. |
customerId | string | The identifier for the customer making the deposit. |
transfer_method | string | The method used for the transfer (e.g., BANK).See Supported Transfer Methods. |