Hello,
I am having a working Square integration with our application. We want to add the Customer(buyer) name to the Transaction Detail in SquareUp Dashboard. I don’t see any where in the API to do so other than using the Billing_Address.
var billingAddress = new Address.Builder()
.FirstName(firstname)
.LastName(lastname)
.Build();
However, doing so, the name is not showing up on the transaction detail or receipt. Where can I find the Billing Address on the SquareUp dashboard? Is that something need to be turn on ?
On the side note, how do I add the customer name on the detail page? Do need to create customer profile for every transaction? And then save the customerID to user account on our application so it can be reused in the future?
This seems to be a lot of works for just a first/last name on the payment.
Normally the Customer Name “Paid By” would appear under the “Source:”
Any idea?
Thanks