This wiki is no longer being updated as of December 10, 2025.
|
Business Coder UK:REST JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 9: | Line 9: | ||
===Using Address as Input=== | ===Using Address as Input=== | ||
<pre> | <pre> | ||
https:// | https://globalbusinesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderGB | ||
?id={License Key} | ?t={Transmission Reference} | ||
&id={License Key} | |||
&cols={Columns} | &cols={Columns} | ||
&opt={Options} | &opt={Options} | ||
&format={Format} | |||
&rec={Record ID} | &rec={Record ID} | ||
&comp={Company} | &comp={Company} | ||
&a1={ | &a1={Address Line 1} | ||
&a2={ | &a2={Address Line 2} | ||
&a3={Address Line 3} | |||
&a4={Address Line 4} | |||
&loc={Locality} | &loc={Locality} | ||
&area={ | &dloc={Dependent Locality} | ||
&ddloc={Double Dependent Locality} | |||
&sarea={Sub Administrative Area} | |||
&area={Administrative Area} | |||
&subnat={Sub National Area} | |||
&postal={Postal Code} | &postal={Postal Code} | ||
&ctry={Country} | &ctry={Country} | ||
&mak={Melissa Address Key} | &mak={Melissa Address Key} | ||
</pre> | </pre> | ||
| Line 49: | Line 46: | ||
"AddressLine3": "string", | "AddressLine3": "string", | ||
"AddressLine4": "string", | "AddressLine4": "string", | ||
"AdministrativeArea": "string", | "AdministrativeArea": "string", | ||
"Building": "string", | "Building": "string", | ||
| Line 103: | Line 99: | ||
[[Category:Business Coder]] | [[Category:Business Coder UK]] | ||
[[Category:Reference]] | [[Category:Reference]] | ||
Latest revision as of 21:03, 16 January 2018
| Business Coder UK Navigation | ||||
|---|---|---|---|---|
| ||||
| ||||
| ||||
| Business Coder UK Result Codes | ||||
| Sample Code |
REST Request
Using Address as Input
https://globalbusinesscoder.melissadata.net/WEB/BusinessCoder/doBusinessCoderGB
?t={Transmission Reference}
&id={License Key}
&cols={Columns}
&opt={Options}
&format={Format}
&rec={Record ID}
&comp={Company}
&a1={Address Line 1}
&a2={Address Line 2}
&a3={Address Line 3}
&a4={Address Line 4}
&loc={Locality}
&dloc={Dependent Locality}
&ddloc={Double Dependent Locality}
&sarea={Sub Administrative Area}
&area={Administrative Area}
&subnat={Sub National Area}
&postal={Postal Code}
&ctry={Country}
&mak={Melissa Address Key}
JSON Response
{
"TransmissionResults": "string",
"TransmissionReference": "string",
"Version": "string",
"TotalRecords": "string",
"Records": [
{
"AddressLine1": "string",
"AddressLine2": "string",
"AddressLine3": "string",
"AddressLine4": "string",
"AdministrativeArea": "string",
"Building": "string",
"CompanyName": "string",
"CountryCode": "string",
"CountryName": "string",
"CountyName": "string",
"DeliveryIndicator": "string",
"DependentLocality": "string",
"DependentThoroughfare": "string",
"DependentThoroughfareLeadingType": "string",
"DependentThoroughfareName": "string",
"DependentThoroughfarePostDirection": "string",
"DependentThoroughfarePreDirection": "string",
"DependentThoroughfareTrailingType": "string",
"DoubleDependentLocality": "string",
"FormattedAddress": "string",
"IncorporationDate": "string",
"Latitude": "string",
"Locality": "string",
"Longitude": "string",
"MelissaAddressKey": "string",
"MelissaAddressKeyBase": "string",
"PostBox": "string",
"PostalCode": "string",
"PremisesNumber": "string",
"PremisesType": "string",
"RecordID": "string",
"Results": "string",
"SICCode1": "string",
"SICCode2": "string",
"SICCode3": "string",
"SICCode4": "string",
"SICDescription1": "string",
"SICDescription2": "string",
"SICDescription3": "string",
"SICDescription4": "string",
"SubAdministrativeArea": "string",
"SubNationalArea": "string",
"SubPremises": "string",
"SubPremisesNumber": "string",
"SubPremisesType": "string",
"Thoroughfare": "string",
"ThoroughfareLeadingType": "string",
"ThoroughfareName": "string",
"ThoroughfarePostDirection": "string",
"ThoroughfarePreDirection": "string",
"ThoroughfareTrailingType": "string"
}
]
}