This wiki is no longer being updated as of December 10, 2025.
|
Business Coder:REST JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 77: | Line 77: | ||
&rec={Record ID} | &rec={Record ID} | ||
&mek={MEK} | &mek={MEK} | ||
</pre> | |||
===Using FreeForm as Input=== | |||
<pre> | |||
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS | |||
?id={LicenseKey} | |||
&cols={Columns} | |||
&opt={Options} | |||
&rec={Record ID} | |||
&ff={Free Form} | |||
</pre> | </pre> | ||
| Line 93: | Line 104: | ||
"City": "string", | "City": "string", | ||
"CompanyName": "string", | "CompanyName": "string", | ||
"CurrentCompanyName": "string", | |||
"CountryCode": "string", | "CountryCode": "string", | ||
"CountryName": "string", | "CountryName": "string", | ||
Latest revision as of 00:07, 7 April 2022
| Business Coder Navigation | ||||
|---|---|---|---|---|
| ||||
| ||||
| ||||
| ||||
| Sample Code |
REST Request
Using Address as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&comp={Company}
&a1={Address1}
&a2={Address2}
&city={City}
&state={State}
&postal={Postal Code}
&ctry={Country}
Using Melissa Address Key (MAK) and Company as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&comp={Company}
&mak={Melissa Address Key}
Using StockTicker as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&stock={Stock Ticker}
Using Web Address as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&web={Web Address}
Using Phone as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&phone={Phone}
Using Melissa Enterprise Key as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={License Key}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&mek={MEK}
Using FreeForm as Input
https://businesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderUS
?id={LicenseKey}
&cols={Columns}
&opt={Options}
&rec={Record ID}
&ff={Free Form}
JSON Response
{
"TransmissionResults":"string",
"TransmissionReference":"string",
"Version":"string",
"TotalRecords":"string",
"Records": [{
"AddressLine1": "string",
"CensusBlock": "string",
"CensusTract": "string",
"City": "string",
"CompanyName": "string",
"CurrentCompanyName": "string",
"CountryCode": "string",
"CountryName": "string",
"CountyFIPS": "string",
"CountyName": "string",
"DeliveryIndicator": "string",
"EIN": "string",
"EmployeesEstimate": "string",
"Latitude": "string",
"LocationType": "string",
"Longitude": "string",
"MelissaEnterpriseKey": "string",
"MelissaAddressKey": "string",
"MelissaAddressKeyBase": "string",
"NAICSCode1": "string",
"NAICSCode2": "string",
"NAICSCode3": "string",
"NAICSDescription1": "string",
"NAICSDescription2": "string",
"NAICSDescription3": "string",
"Phone": "string",
"PlaceCode": "string",
"PlaceName": "string",
"Plus4": "string",
"PostalCode": "string",
"RecordID": "string",
"Results": "string",
"SICCode1": "string",
"SICCode2": "string",
"SICCode3": "string",
"SICDescription1": "string",
"SICDescription2": "string",
"SICDescription3": "string",
"SalesEstimate": "string",
"State": "string",
"StockTicker": "string",
"Suite": "string",
"TotalContacts": "string",
"WebAddress": "string",
"Contacts": [
{
"NameFirst": "string",
"NameLast": "string",
"Gender": "string",
"Title": "string",
"ContactPhone:" "string",
"Email": "string"
},
{
"NameFirst": "string",
"NameLast": "string",
"Gender": "string",
"Title": "string",
"ContactPhone:" "string",
"Email": "string"
}
]
}]
}