Show Menu

Fetch Company Wallet Transaction Details

Fetch Company Wallets Transaction Details

This call allows you to get the transaction details for the selected transaction ID.

post/API/v4/Wallet/GetCompanyWalletTransactionDetails

Header Parameters

Authorizationstring

bearer access_token

Content-typestring

application/json

Request Parameters

IssuerAccountNumberstring

String length: inclusive between 1 and 25

TransactionIDint

String length: inclusive between 1 and 25

Reponse Parameters

GetCompanyTransactionDetailsResultstring

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/GetCompanyWalletTransactionDetails

{
  "GetCompanyTransactionDetails": {
    "Request": {
      "IssuerAccountNumber": "SPN Account Number",
      "TransactionID": "Transaction ID"
    }
  }
}
						

Sample Response:


{
	"GetCompanyTransactionDetailsResponse": {
		"GetCompanyTransactionDetailsResult": {
			"Field": [
				{
					"Name": "Method",
					"Value": "CITI"
				},
				{
					"Name": "Status",
					"Value": "Transaction Pending"
				},
				{
					"Name": "Transferred to",
					"Value": "Roger Penske ([email protected])"
				},
				{
					"Name": "Program",
					"Value": "test"
				},
				{
					"Name": "Description",
					"Value": "Test"
				},
				{
					"Name": "Comment",
					"Value": "-"
				},
				{
					"Name": "Submission File",
					"Value": "0"
				},
				{
					"Name": "Partner",
					"Value": "-"
				},
				{
					"Name": "Sale Date",
					"Value": "Oct 09, 2015"
				},
				{
					"Name": "Total Payment",
					"Value": "USD 23.00"
				},
				{
					"Name": "Budget Code",
					"Value": "-"
				}
			],
			"OperationStatus": {
				"Success": true,
				"Errors": null
			}
		}
	}
}