Use this method to fetch partial records returned by a search. Submit the fields (as an array of strings) you want to be returned by the api. Please note that using this method with only the fields you need may increase the performance and decrease the response time of the api.
Returns the wanted page of records. Count of records depends on pageSize defined in the search.
application/json, text/json :
{
"searchId": 1,
"page": 1,
"recordCount": 1,
"totalRecordCount": 0,
"records": [
{
"relevanceScore": 1.0,
"uniqueID": "BE2000656832",
"universalPublicationId": "BE2000656832",
"isPublished": true,
"isResidential": true,
"isBusiness": true,
"businessName": "SCRL TAN",
"address1": "Rue de LAqueduc 95 ",
"postCode": "1050",
"city": "Bruxelles",
"cityCode": "21004",
"locality": "",
"localityCode": "",
"province": "Bruxelles Capitale",
"provinceCode": "99999990001",
"region": "Bruxelles Capitale",
"regionCode": "04000",
"country": "Belgium",
"countryCode": "BE",
"phoneOrMobile": "02 537 87 87",
"phone": "02 537 87 87",
"fax": "",
"mobile": "",
"email": "nicolas@tanclub.org",
"website": "https://www.tan.brussels/",
"geoLevel": 1,
"geoLevelDescription": "City",
"longitude": "4.3557022",
"latitude": "50.8455341",
"infobelCategories": [
{
"code": "017116",
"name": "Restaurants",
"language": "EN",
"type": "Infobel",
"parentCode": "017100",
"level": 3
}
],
"infobelCode01": "017116",
"infobelCode02": "",
"infobelCode03": "",
"infobelCode04": "",
"infobelCode05": "",
"infobelCode06": "",
"infobelCode07": "",
"infobelCode08": "",
"infobelCode09": "",
"infobelCode10": "",
"infobelLabel01": "Restaurants",
"language": "FRE",
"nationalID": "BE0475805883",
"marketingFlag": "1",
"nativeInfos": {
"lastName1": "SCRL",
"firstName1": "TAN",
"cityName": "Bruxelles"
}
}
]
}
application/xml, text/xml :
<FetchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Page>1</Page>
<RecordCount>1</RecordCount>
<Records>
<Record>
<AdditionalInfos xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
<Address1>Rue de LAqueduc 95 </Address1>
<Address2 i:nil="true" />
<AddressBoxNumber i:nil="true" />
<AddressHouseNumber i:nil="true" />
<AddressStreet i:nil="true" />
<BusinessName>SCRL TAN</BusinessName>
<City>Bruxelles</City>
<CityCode>21004</CityCode>
<CompanyName i:nil="true" />
<Country>Belgium</Country>
<CountryCode>BE</CountryCode>
<DNCMMobile i:nil="true" />
<DNCMPhone i:nil="true" />
<DirectoryName i:nil="true" />
<Email>nicolas@tanclub.org</Email>
<Fax></Fax>
<GeoLevel>1</GeoLevel>
<GeoLevelDescription>City</GeoLevelDescription>
<InfobelCategories>
<Category>
<Code>017116</Code>
<CountryCode i:nil="true" />
<Language>EN</Language>
<Level>3</Level>
<Name>Restaurants</Name>
<ParentCode>017100</ParentCode>
<Type>Infobel</Type>
</Category>
</InfobelCategories>
<InfobelCode01>017116</InfobelCode01>
<InfobelCode02></InfobelCode02>
<InfobelCode03></InfobelCode03>
<InfobelCode04></InfobelCode04>
<InfobelCode05></InfobelCode05>
<InfobelCode06></InfobelCode06>
<InfobelCode07></InfobelCode07>
<InfobelCode08></InfobelCode08>
<InfobelCode09></InfobelCode09>
<InfobelCode10></InfobelCode10>
<InfobelLabel01>Restaurants</InfobelLabel01>
<InfobelLabel02 i:nil="true" />
<InfobelLabel03 i:nil="true" />
<InfobelLabel04 i:nil="true" />
<InfobelLabel05 i:nil="true" />
<InfobelLabel06 i:nil="true" />
<InfobelLabel07 i:nil="true" />
<InfobelLabel08 i:nil="true" />
<InfobelLabel09 i:nil="true" />
<InfobelLabel10 i:nil="true" />
<IsBusiness>true</IsBusiness>
<IsPublished>true</IsPublished>
<IsResidential>true</IsResidential>
<Language>FRE</Language>
<Latitude>50.8455341</Latitude>
<Locality></Locality>
<LocalityCode></LocalityCode>
<Longitude>4.3557022</Longitude>
<MarketingFlag>1</MarketingFlag>
<Mobile></Mobile>
<NationalID>BE0475805883</NationalID>
<NativeInfos xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:KeyValueOfstringstring>
<d4p1:Key>LastName1</d4p1:Key>
<d4p1:Value>SCRL</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>FirstName1</d4p1:Key>
<d4p1:Value>TAN</d4p1:Value>
</d4p1:KeyValueOfstringstring>
<d4p1:KeyValueOfstringstring>
<d4p1:Key>CityName</d4p1:Key>
<d4p1:Value>Bruxelles</d4p1:Value>
</d4p1:KeyValueOfstringstring>
</NativeInfos>
<Phone>02 537 87 87</Phone>
<PhoneOrMobile>02 537 87 87</PhoneOrMobile>
<PostCode>1050</PostCode>
<Province>Bruxelles Capitale</Province>
<ProvinceCode>99999990001</ProvinceCode>
<Region>Bruxelles Capitale</Region>
<RegionCode>04000</RegionCode>
<RelevanceScore>1</RelevanceScore>
<TradeName i:nil="true" />
<UniqueID>BE2000656832</UniqueID>
<UniversalPublicationId>BE2000656832</UniversalPublicationId>
<Website>https://www.tan.brussels/</Website>
</Record>
</Records>
<SearchId>1</SearchId>
<TotalRecordCount>0</TotalRecordCount>
</FetchResult>