Invoice API
Discover how the invoice API creates sales orders in Retail Pro, streamlining the invoicing process for the store team.
Creates the sales order in Retail Pro for the store team to invoice.
Endpoint
Mapping tables
InvoicingStore
String
5
Y
Root
Store Code where the Order is Billed
OrderNo
String
9
Y
Root
Unique Order number in the Shopify system
CreatedDate
DateTime
Y
Root
Date and time when the order was created in Shopify
DeliveryType
Short
3
Y
Root
Type of Delivery (e.g., Standard, Express)
PaymentType
Short
3
Y
Root
Type of Payment used for the order
TotalAmt
Float(10,4)
Y
Root
Total Amount of the Order
TotalDiscAmt
Float(10,4)
N
Root
Total Discount Amount applied to the entire order
ShippingAmt
Float(10,4)
N
Root
Total Amount for Shipping (if applicable)
FiscalCredit
Boolean
Y
Y
Root
If value is true, the fields CompanyId, CompanyName, and CompanyAddress are required.
CompanyId
String
20
N
Root
Company Identity Document
CompanyName
String
30
N
Root
Company Name according to Identity Document
CompanyAddress
String
80
N
Root
Company Address according to Identity Document
FirstName
String
30
Y
CustomerBilling
First Name of the Customer for Billing
LastName
String
30
Y
CustomerBilling
Last Name of the Customer for Billing
String
60
Y
CustomerBilling
Email address of the Customer for Billing
Address1
String
40
Y
CustomerBilling
First line of the Customer's address for Billing
Address2
String
40
N
CustomerBilling
Second line of the Customer's address for Billing
City
String
40
N
CustomerBilling
City of the Customer's address for Billing
Country
String
40
N
CustomerBilling
Country of the Customer's address for Billing
NoDocument
String
20
Y
CustomerBilling
Identity Document Number for Customer Billing
TypeDocument
String
40
Y
CustomerBilling
Type Document the Customer for Billing
FirstName
String
30
Y
CustomerShipping
First Name of the Customer for Shipping
LastName
String
30
Y
CustomerShipping
Last Name of the Customer for Shipping
String
60
Y
CustomerShipping
Email address of the Customer for Shipping
Address1
String
40
Y
CustomerShipping
First line of the Customer's address for Shipping
Address2
String
40
N
CustomerShipping
Second line of the Customer's address for Shipping
City
String
40
N
CustomerShipping
City of the Customer's address for Shipping
Country
String
40
N
CustomerShipping
Country of the Customer's address for Shipping
NoDocument
String
20
Y
CustomerShipping
Identity Document Number for Customer Shipping
TypeDocument
String
40
Y
CustomerShipping
Type Document the Customer for Shipping
UPC
String
19
Y
Item
Product Stock Keeping Unit (SKU) Code
OrigPrice
Float(10,4)
Y
Item
Original Price of the Product
OrigTax
Float(10,4)
Y
Item
Original Tax amount associated with the Product
Price
Float(10,4)
Y
Item
Final Price of the Product after applying discounts
Tax
Float(10,4)
Y
Item
Final Tax amount of the Product after applying discounts
Qty
Float(10,4)
Y
Item
Quantity of the Product in the Order
StoreOrig
String
5
Y
Item
Store code where the fulfillment of the Product is confirmed
StoreDest
String
5
N
Item
Store code where the Product is delivered to the customer (if applicable for in-store delivery)
This table maps the DeliveryType
values in the API JSON.
The Id
column represents the numeric identifier for each delivery option, and the Description
column provides a human-readable description of each option.
In the API JSON, the DeliveryType
field should take one of these values based on the desired delivery method:
For "Delivery in store" (store pickup) set
DeliveryType
to1
.For "Delivery at Home" set
DeliveryType
to2
.
1
Delivery in store
2
Delivery at Home
This table maps the PaymentType
values in the API JSON. The Id
column represents the numeric identifier for each payment option, and the Description
column provides a human-readable description of each option.
In the API JSON, the PaymentType
field should take one of these values based on the desired payment method:
For "Credit/Debit Card," set
PaymentType
to1
.For "Cash on delivery," set
PaymentType
to2
.
So, when constructing the API JSON for an order, you would choose the appropriate PaymentType
value based on the payment method associated with the order.
1
Credit/Debit Card
2
Cash on delivery
During invoicing, HotWax also uses inventory transfers in Retail Pro to ensure inventory is depleted at the actual shipping store as well. Read more about that API on the next page.
Last updated