You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a customer token for a payment card (via this API), I would like to include billTo_middleName in the request . Currently, this field is missing from the Request Fields. Is there a way to make this happen?
Thanks!
The text was updated successfully, but these errors were encountered:
The API is PaymentInstrumentApi (TMS).
….
requestObj.Card = cardObj;
var billToObj = new TmsV1InstrumentIdentifiersPaymentInstrumentsGet200ResponseEmbeddedBillTo
{
FirstName = "John",
LastName = "Smith",
//MiddleName = “Amit”, //or MiddleNameInitial = “A”, Currently, this is impossible as the BillTo.cs Model doesn’t have defined the field/param
Company = "CyberSource",
Address1 = "12 Main Street",
Address2 = "20 My Street",
Locality = "San Francisco",
AdministrativeArea = "CA",
PostalCode = "90200",
Country = "US"
Email = "[email protected]",
PhoneNumber = "555123456"
};
…
When creating a customer token for a payment card (via this API), I would like to include billTo_middleName in the request . Currently, this field is missing from the Request Fields. Is there a way to make this happen?
Thanks!
The text was updated successfully, but these errors were encountered: