Hello Everyone I have this line of code to capture but invoiceNumber didnot save.
var transactionRequest = new transactionRequestType();
transactionRequest.transactionType = transactionTypeEnum.priorAuthCaptureTransaction.ToString();
transactionRequest.amount = data.Amount.GetValueOrDefault(0.0m);
transactionRequest.currencyCode = this.Settings.Currency;
transactionRequest.order = new orderType
{
invoiceNumber = "INV-123"
};
transactionRequest.customer = new customerDataType
{
id = data.CompanyID?.ToString(),
type = customerTypeEnum.business
};
โ05-17-2022 08:52 AM