Show Menu

Fetch Beneficiary User Wallet Transaction Details

Fetch Beneficiary User Wallet Transaction Details

You can get details of a specific transaction using the unique transcation id from GetUserWalletTransactions API call.

post/API/v4/Wallet/GetUserWalletTransactionDetails

Header Parameters

Authorizationstring

bearer access_token

Content-typestring

application/json

Request Parameters

IssuerAccountNumberstring

String length: inclusive between 1 and 25

UserIDint

int: inclusive between 1 and 25

TransactionIDint

int: inclusive between 1 and 25

Reponse Parameters

GetUserTransactionDetailsResultstring

Returned if successful List of fields for a transaction. For each transaction the following parameters are returned:
Name—Name
Value—Value

OperationStatusstring

Always returned Indicates the status of the operation. Allowed parameters are:
Errors - Displays an error message if the Property name Obligation Definition/value operation was unsuccessful. For more information, see API Error Message Appendix.
Success—Indicates whether the operation was successful. Returns True if the action was successful or False if it was not successful.

Sample Request:

sandbox.xapi.xtrm.com/API/v4/Wallet/GetUserWalletTransactionDetails

{
  "GetUserTransactionDetails": {
    "Request": {
      "IssuerAccountNumber": "SPN19134657",
       "UserID": "PAT Account Number",
      "TransactionID": "20059"
    }
  }
}
						

Sample Response:


{
    "GetUserTransactionDetailsResponse":{
            "GetUserTransactionDetailsResult":{
                                                "Field":[
                                                [
                                                {
                                                "Name":"Transfer Type",
                                                "Value":"WIRE"
                                                },
                                                {
                                                "Name":"Transaction Status",
                                                "Value":"Submitted"
                                                },
                                                {
                                                "Name":"Payment Amount",
                                                "Value":"25.00"
                                                },
                                                {
                                                "Name":"Payment Currency",
                                                "Value":"USD"
                                                },
                                                {
                                                "Name":"Order Number",
                                                "Value":"254697"
                                                },
                                                {
                                                "Name":"Date Booked",
                                                "Value":"Jan 20,2021"
                                                },
                                                {
                                                "Name":"Beneficiary Name",
                                                "Value":"WELLS FARGO BANK, NATIONAL"
                                                },
                                                {
                                                "Name":"Account Number",
                                                "Value":"9939393"
                                                },
                                                {
                                                "Name":"Address",
                                                "Value":"test adddresss line 1 Belmont"
                                                },
                                                {
                                                "Name":"Beneficiary Bank Address",
                                                "Value":"ASSOCIATION 375 PARK AVE NEW YORK CITY"
                                                },
                                                {
                                                "Name":"Beneficiary Bank Name",
                                                "Value":"TEST NAME"
                                                },
                                                {
                                                "Name":"Beneficiary SWIFTBIC",
                                                "Value":""
                                                }
                                                ]
                                                ],
                                         "OperationStatus":
                                            {
                                                "Success":true,
                                                "Errors":null
                                            }
                                          }       
                                        }
}