Table of Contents
Contacts Sample
Contact import samples are available in the following file formats:
Microsoft Excel Worksheet
Account ID | Account Number | Account Name | Contact ID | Contact Type | Company Name | Prefix | First Name | Middle Initial | Last Name | Title | Street 1 | Street 2 | Street 3 | City | State | Zip | Phone Number | Fax Number | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | DIV-A | Division A | Billing | Lawncare Limited | 55 S. Bramble Lane | Suite 2 | 19063 | |||||||||||||
2 | DIV-B | Division B | Newsletter | Walter | Cruz | wcruz@yourcompany.com | ||||||||||||||
3 |
JSON File
{
"contacts": [
{
"accountId": "",
"accountNumber": "DIV-A",
"accountName": "Division A",
"contactId": "",
"contactType": "Billing",
"companyName": "Lawncare Limited",
"prefix": "",
"firstName": "",
"middleInitial": "",
"lastName": "",
"title": "",
"street1": "55 S. Bramble Lane",
"street2": "Suite 2",
"street3": "",
"city": "",
"state": "",
"zip": "19063",
"email": "",
"phoneNumber": "",
"faxNumber": ""
},
{
"accountId": "",
"accountNumber": "DIV-B",
"accountName": "Division B",
"contactId": "",
"contactType": "Newsletter",
"companyName": "",
"prefix": "",
"firstName": "Walter",
"middleInitial": "",
"lastName": "Cruz",
"title": "",
"street1": "",
"street2": "",
"street3": "",
"city": "",
"state": "",
"zip": "",
"email": "wcruz@yourcompany.com",
"phoneNumber": "",
"faxNumber": ""
}
]
}
XML Document
<?xml version="1.0"?>
<import>
<contact>
<accountId></accountId>
<accountNumber>DIV-A</accountNumber>
<accountName>Division A</accountName>
<contactId></contactId>
<contactType>Billing</contactType>
<companyName>Lawncare Limited</companyName>
<prefix></prefix>
<firstName></firstName>
<middleInitial></middleInitial>
<lastName></lastName>
<title></title>
<street1>55 S. Bramble Lane</street1>
<street2>Suite 2</street2>
<street3></street3>
<city></city>
<state></state>
<zip>19063</zip>
<email></email>
<phoneNumber></phoneNumber>
<faxNumber></faxNumber>
</contact>
<contact>
<accountId></accountId>
<accountNumber>DIV-B</accountNumber>
<accountName>Division B</accountName>
<contactId></contactId>
<contactType>Newsletter</contactType>
<companyName></companyName>
<prefix></prefix>
<firstName>Walter</firstName>
<middleInitial></middleInitial>
<lastName>Cruz</lastName>
<title></title>
<street1></street1>
<street2></street2>
<street3></street3>
<city></city>
<state></state>
<zip></zip>
<email>wcruz@yourcompany.com</email>
<phoneNumber></phoneNumber>
<faxNumber></faxNumber>
</contact>
</import>