Allows a merchant to retrieve more detailed information about a transaction.

Parameters


transactionId

A unique Luxon transaction identifier that can be used as a reference in other API calls.


 

Request Get

.../api/v1/merchant/transaction/{transactionId}

Returns


merchantTransactionId

The transaction ID sent by the merchant when this transaction was created.


merchantUserId

The user ID sent by the merchant when this transaction was created.


userWallet

A unique ID that represents the users wallet.


date

The date and time the transaction was created in ISO8601 format.


comment

The comment field attached to the transaction.


amount

A positive integer in cents representing the value of the transaction.
e.g. 100 EUR would be 10000 / 50 USD would be 5000


type

The Type of transaction (“MERCHANT_PAYOUT” “MERCHANT_PAYIN” “MERCHANT_REFUND”).


fee

The fee chargeable to the merchant for this transaction in EUR cents.


status

A status object with the status of the transaction.


 

Response

{
"merchantTransactionId": "string",
"merchantUserId": "string",
"userWallet": "string",
"date": "string", // transaction date in ISO 8601 format
"comment": "string",
"amount": number,
"type": "string", // one of MERCHANT_PAYIN, MERCHANT_PAYOUT, MERCHANT_REFUND
"fee": number,
"status": {
"code": "string",
"message": "string"
}
}