POST api/record/{countryCode}/{universalPublicationId}?languageCode={languageCode}&filterOnDNCM={filterOnDNCM}&internationalPhoneFormat={internationalPhoneFormat} Authentication required

Use this method to fetch a record's partial content based on its UniversalPublicationId

Request

URI Parameters

NameDescriptionTypeAdditional information
countryCode

Country's ISO code (2 chars)

string

Required

universalPublicationId

universalPublicationId of the record

string

Required

languageCode

[Optional] Language represented by its ISO 639-1 Code (2 chars long). Default it EN. Provide this if you wish to receive the Categories labels in another language

string

Default value is EN

filterOnDNCM

[Optional] Default if false. Set this to true only for BE records if you wish to apply DNCM flags

boolean

Default value is False

internationalPhoneFormat

[Optional] Default if false. Set this to true if you want phone number formatted as international phone number (Starting with +xxx prefix)

boolean

Default value is False

Body Parameters

List of fields to extract : simply put the fields names as strings

Input : array of String

Input Sample

  • application/json, text/json :
  • [ "sample string 1", "sample string 2" ]
  • application/xml, text/xml :
  • <ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <string>sample string 1</string> <string>sample string 2</string> </ArrayOfstring>

    Response

    Returns the wanted record, if exists

    Output : object (See Model)

    Ouput Sample

  • application/json, text/json :
  • { "uniqueID": "BE2000021018", "universalPublicationId": "BE2000021018", "isPublished": true, "isBusiness": true, "businessName": "La Chine Impériale", "address1": "Chaussée de Wavre 2 B", "postCode": "1370", "city": "Jodoigne", "cityCode": "25048", "locality": "", "localityCode": "", "province": "Brabant Wallon", "provinceCode": "20002", "region": "Wallonie", "regionCode": "03000", "country": "Belgium", "countryCode": "BE", "phoneOrMobile": "010 81 33 88", "phone": "010 81 33 88", "fax": "", "mobile": "", "email": "", "website": "", "geoLevel": 3, "geoLevelDescription": "House", "longitude": "4.8641342", "latitude": "50.7226458", "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": "BE0565897109", "marketingFlag": "1", "nativeInfos": { "lastName1": "La Chine Impériale", "cityName": "Jodoigne" } }
  • application/xml, text/xml :
  • <Record xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <AdditionalInfos xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" /> <Address1>Chaussée de Wavre 2 B</Address1> <Address2 i:nil="true" /> <AddressBoxNumber i:nil="true" /> <AddressHouseNumber i:nil="true" /> <AddressStreet i:nil="true" /> <BusinessName>La Chine Impériale</BusinessName> <City>Jodoigne</City> <CityCode>25048</CityCode> <CompanyName i:nil="true" /> <Country>Belgium</Country> <CountryCode>BE</CountryCode> <DNCMMobile i:nil="true" /> <DNCMPhone i:nil="true" /> <DirectoryName i:nil="true" /> <Email></Email> <Fax></Fax> <GeoLevel>3</GeoLevel> <GeoLevelDescription>House</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 i:nil="true" /> <Language>FRE</Language> <Latitude>50.7226458</Latitude> <Locality></Locality> <LocalityCode></LocalityCode> <Longitude>4.8641342</Longitude> <MarketingFlag>1</MarketingFlag> <Mobile></Mobile> <NationalID>BE0565897109</NationalID> <NativeInfos xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>LastName1</d2p1:Key> <d2p1:Value>La Chine Impériale</d2p1:Value> </d2p1:KeyValueOfstringstring> <d2p1:KeyValueOfstringstring> <d2p1:Key>CityName</d2p1:Key> <d2p1:Value>Jodoigne</d2p1:Value> </d2p1:KeyValueOfstringstring> </NativeInfos> <Phone>010 81 33 88</Phone> <PhoneOrMobile>010 81 33 88</PhoneOrMobile> <PostCode>1370</PostCode> <Province>Brabant Wallon</Province> <ProvinceCode>20002</ProvinceCode> <Region>Wallonie</Region> <RegionCode>03000</RegionCode> <TradeName i:nil="true" /> <UniqueID>BE2000021018</UniqueID> <UniversalPublicationId>BE2000021018</UniversalPublicationId> <Website></Website> </Record>