Business Coder:REST JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 72: | Line 72: | ||
<pre> | <pre> | ||
{ | { | ||
"TransmissionResults":"string", | |||
"TransmissionReference":"string", | "TransmissionReference":"string", | ||
"Version":"string", | "Version":"string", | ||
"TotalRecords":"string", | "TotalRecords":"string", | ||
"Records": [{ | "Records": [{ | ||
" | "AddressLine1": "string", | ||
" | "CensusBlock": "string", | ||
"CompanyName":"string", | "CensusTract": "string", | ||
" | "City": "string", | ||
" | "CompanyName": "string", | ||
" | "CountryCode": "string", | ||
" | "CountryName": "string", | ||
" | "CountyFIPS": "string", | ||
" | "CountyName": "string", | ||
" | "DeliveryIndicator": "string", | ||
"MelissaAddressKey":"string", | "EIN": "string", | ||
"MelissaAddressKeyBase":"string", | "EmployeesEstimate": "string", | ||
" | "Latitude": "string", | ||
"Phone":"string", | "LocationType": "string", | ||
" | "Longitude": "string", | ||
" | "MelissaAddressKey": "string", | ||
" | "MelissaAddressKeyBase": "string", | ||
" | "NAICSCode1": "string", | ||
"SICCode1":"string", | "NAICSCode2": "string", | ||
"SICCode2":"string", | "NAICSCode3": "string", | ||
"SICCode3":"string", | "NAICSDescription1": "string", | ||
"SICDescription1":"string", | "NAICSDescription2": "string", | ||
"SICDescription2":"string", | "NAICSDescription3": "string", | ||
"SICDescription3":"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", | |||
"WebAddress": "string", | |||
"Contacts": [ | |||
{ | |||
"NameFirst": "string", | |||
"NameLast": "string", | |||
"Gender": "string", | |||
"Title": "string", | |||
"Email": "string" | |||
}, | |||
{ | |||
"NameFirst": "string", | |||
"NameLast": "string", | |||
"Gender": "string", | |||
"Title": "string", | |||
"Email": "string" | |||
} | |||
] | |||
}] | }] | ||
} | } |
Revision as of 22:51, 28 December 2016
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}
JSON Response
{ "TransmissionResults":"string", "TransmissionReference":"string", "Version":"string", "TotalRecords":"string", "Records": [{ "AddressLine1": "string", "CensusBlock": "string", "CensusTract": "string", "City": "string", "CompanyName": "string", "CountryCode": "string", "CountryName": "string", "CountyFIPS": "string", "CountyName": "string", "DeliveryIndicator": "string", "EIN": "string", "EmployeesEstimate": "string", "Latitude": "string", "LocationType": "string", "Longitude": "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", "WebAddress": "string", "Contacts": [ { "NameFirst": "string", "NameLast": "string", "Gender": "string", "Title": "string", "Email": "string" }, { "NameFirst": "string", "NameLast": "string", "Gender": "string", "Title": "string", "Email": "string" } ] }] }