This wiki is no longer being updated as of December 10, 2025.
|
Business Coder UK:JSON: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
{{CustomTOC}} | {{CustomTOC}} | ||
==JSON | ==JSON Request== | ||
<pre> | <pre> | ||
{ | { | ||
| Line 23: | Line 22: | ||
"postal":"string", | "postal":"string", | ||
"ctry":"string" | "ctry":"string" | ||
}] | }] | ||
} | } | ||
| Line 41: | Line 27: | ||
==JSON | ==JSON Response== | ||
<pre> | <pre> | ||
{ | { | ||
"TransmissionResults":"string", | "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" | |||
} | |||
] | |||
} | } | ||
</pre> | </pre> | ||
Revision as of 15:46, 26 October 2017
| Business Coder UK Navigation | ||||
|---|---|---|---|---|
| ||||
| ||||
| ||||
| Business Coder UK Result Codes | ||||
| Sample Code |
JSON Request
{
"t":"string",
"id":"string",
"cols":"string",
"opt":"string",
"Records":[{
"rec":"string",
"comp":"string",
"a1":"string",
"a2":"string",
"loc":"string",
"area":"string",
"postal":"string",
"ctry":"string"
}]
}
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"
}
]
}