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.
Intelligent Payment Automation, powered by BILL (aka Bill.com), lets you automate payments, manage vendor details, and bank account information within NetSuite.
The SuiteApp is available to organizations based in the U.S. with a valid U.S. address, or to global customers (except Canada, China, and Japan) with U.S. business subsidiaries. It only supports payments to vendors operating in the United States.
For more information, visit this thread.
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);