Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
SuiteTalk: error when adding customerpayment. Error ID: iappaxn515td1xx877mxm
I use webserivces to initialize and create a new customer payment. I got it to work when adding a new card as the payment method but when i want to use an existing credit card by assigning the internal id.. I get this error message:
An unexpected error occurred. Error ID: iappaxn515td1xx877mxm
what does the Error mean?
the code in red is not working!
var customer = (Customer)readResponse.record;
InitializeRef customerInitializeRef = new InitializeRef();
customerInitializeRef.type = InitializeRefType.customer;
customerInitializeRef.typeSpecified = true;
customerInitializeRef.internalId = customerInternalId;
InitializeRecord customerPaymentRecord1 = new InitializeRecord();
customerPaymentRecord1.type = InitializeType.customerPayment;
customerPaymentRecord1.reference = customerInitializeRef;
var read1 = _service.Initialize(customerPaymentRecord1);