PHP Create order and Sale notification

You’re a genius!

Question 1:
When clicking on “Orders” in my dashboard, it’s empty. Is it not supposed to be there? (Receipt #Zo0B)

I got the payment to go through but have no idea why it’s missing information.
When viewing the transaction/order in my dashboard, I must be able to identify it.
I used these codes when creating payment:

$body->setReferenceId(“22356”);
$body->setCustomerId(“6126”);

Question 2:
When I click on the transaction, or view the full receipt, the entire page does not contain ANY of the 2 numbers above :S

Question 3:
I even entered shipping address when creating payment. None of the shipping address is in the transaction or receipt.

$shipping_address = new \Square\Models\Address();
$shipping_address->setAddressLine1(‘addresen’);
$shipping_address->setAddressLine2(‘address 222’);
$shipping_address->setLocality(‘Los Angeles’);
$shipping_address->setSublocality(‘California’);
$shipping_address->setPostalCode(‘90025’);
$shipping_address->setCountry(‘US’);
$shipping_address->setFirstName(‘First name’);
$shipping_address->setLastName(‘last name’);
$body->setShippingAddress($shipping_address);

Question 4:
Also, I put
$order_line_item->setUid(‘17’);
When creating the order. The number 17 does not show up anywhere :confused:
(this is supposed to be the ID (database) of my product.