Customer Object
CustomerNumber
- Description: A unique identifier for the customer, separate from the Customer ID WithoutWire uses to uniquely identify customers.
- Data Type: String
- Data Length: 50
- Required: Yes
- Note: This value is commonly set to the ID of the customer stored in an ERP.
CustomerShipTo
- Description: A reference to the primary shipping address for this customer.
- Data Type: String
- Data Length: 7
- Required: Yes
- Note: Use only if ship to address is not supplied
CustomerName
- Description: The bill to name for this customer.
- Data Type: String
- Required: Yes
- Data Length: 100
- Required: Yes
CustomerPhone
- Description: The bill to phone number for this customer.
- Data Type: String
- Data Length: 50
- Required: Yes
CustomerAddress1
- Description: The bill to address field 1 for this customer.
- Data Type: String
- Data Length: 100
- Required: Yes
CustomerAddress2
- Description: The bill to address field 2 for this customer.
- Data Type: String
- Data Length: 100
- Required: Yes
CustomerCity
- Description: The bill to city for this customer.
- Data Type: String
- Data Length: 50
- Required: Yes
CustomerState
- Description: The bill to state for this customer.
- Data Type: String
- Data Length: 50
- Required: Yes
CustomerZipCode
- Description: The bill to zip code for this customer.
- Data Type: String
- Data Length: 12
- Required: Yes
CustomerCountry
- Description: The bill to zip country for this customer.
- Data Type: String
- Data Length: 50
- Required: Yes
- Description: Any array of shipping addresses
- Data Type: Array
- Required: Yes
Example:
[
{ "CustomerName":"Test Customer.", "CustomerAddress1":"333 Washington Avenue", "CustomerAddress2":"", "CustomerCity":"Minneapolis", "CustomerState":"MN", "CustomerZipCode":"55401", "CustomerCountry":"USA", "CustomerShortDesc":"", "CustomerNumber":"Customer001", "CustomerPhone":"612.343.0404", "CustomerShippingAddresses":[ { "CustomerShipName":"Test Ship To Customer", "CustomerShipAddress1":"333 Washington Avenue", "CustomerShipAddress2":"", "CustomerShipCity":"Minneapolis", "CustomerShipState":"MN", "CustomerShipZipCode":"55401", "CustomerShipZip5":"55401", "CustomerShipPhone":"612.343.0404", "CustomerShipFax":"", "CustomerShipCountry":"USA", "CustomerShipTo":"Primary" } ] }
]