Hi!
I'm trying to enable a Generic ISR Connector on a Space in test mode so that my application can provide an Invoice Payment Method to my users.
Unfortunately, all the transactions using this payment method fail due to the error in the title : "When the processor is in the test mode, the customer name must be 'Good Customer'."
I understand that I have to set somehow the customer name for the transaction to "Good Customer" for the processor to work in test mode.
But how can I achieve that ? There's no customerName
property on your Transaction
object. I can only set the customerEmailAddress
or customerId
.
I tried manually creating a customer using the web application with a given name of "Good" and a family name of "Customer" and using its ID when setting up my transaction.

That didn't work either ; my transaction still failed (event thought the customer for this transaction is actually named "Good Customer".

Soooo... How can I correctly set this "Good Customer" name in my transaction so that I can test this ISR Invoice connector?