'How can I request a reverse geocoding in API HERE GS7 without including the place results (resultType=place)

I am migrating my code to the GS7 API and when making reverse geocoding requests I get place type results (resultType=place) that prevent me from getting the closest address or street names to the coordinate. Therefore, I need to avoid or filter place type results in the request (resultType=place), to get the same response as with the previous API.

I am making the request in each API with similar parameters and I get different results. What I want to achieve is to get the street address closest to the coordinate in the GS7 API request. I leave you the requests with both API's as an example to help me understand what I'm doing wrong or what I should do.

GS7 Reverse Geocode

request: https://revgeocode.search.hereapi.com/v1/revgeocode?apiKey=[apikey]&in=circle:20.57732,-103.36033;r=100

response: 'Grupo Cipsa, Anillo Periférico Sur, Toluquilla, 45610 Tlaquepaque, Jal, México'

API HERE Reverse Geocoding:

request: https://reverse.geocoder.ls.hereapi.com/6.2/reversegeocode.xml?apiKey=[apiKey]&gen=8&prox=20.57732,-103.36033,100&mode=retrieveAddresses

response: 'Anillo Periférico Sur 6258, Toluquilla, 45610 Tlaquepaque, JAL, México'

I really appreciate your help.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source