Show Menu

Update Beneficiary Company Wallets

Update Beneficiary Company Wallets

You can update beneficiary company wallet details.

post/API/v4/Wallet/updateBeneficiarycompanywallet

Header Parameters

Authorizationstring

bearer access_token

Content-typestring

application/json

Request Parameters

IssuerAccountNumberstring

String length: inclusive between 1 and 25

BeneficiaryAccountNumberstring

String length: inclusive between 1 and 25

WalletIDint

String length: inclusive between 1 and 10.

WalletNamestring

String length: inclusive between 1 and 100

Reponse Parameters

Status—Status

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

{
  "UpdateBeneficiaryCompanyWallet": {
    "Request": {
        "IssuerAccountNumber": "SPN Account Number",
        "BeneficiaryAccountNumber":"SPN Account Number",
        "WalletID": "Wallet ID",
        "WalletName": "Wallet Name"
    }
  }
}					

Sample Response:


{
	"UpdateBeneficiaryCompanyWalletResponse": {
		"UpdateBeneficiaryCompanyWalletResult": {
			"Status": "Updated successfully",
			"OperationStatus": {
				"Success": true,
				"Errors": null
			}
		}
	}
}