this web service is used to obtain the number of hits for a property.

Resource information
AuthenticationRequired (JWT)
ParametersRequired
HTTP MethodGET
ResponseJSON

Resource URL

https://property-api.mapaprop.com/property/get/hits

Autenticacion

Se requiere un token JWT en el header Authorization: Bearer {access_token}. El customerId se deriva del token: NO se envia como parametro.

Parameters request.

KeyTypeRequiredDescription
propertyIdStringyesthe property id identifier
brandIdStringyesbrand or system sending data
originIdStringyesoriginating portal sending the data
originCountryStringyescountry code to store customer's local time
daysStringyesnumber of days from current date

Parameters conditions

  • El parametro days solo acepta estos valores: 1, 7, 14, 30, 90.

Example curl

curl --location 'https://property-api.mapaprop.com/property/get/hits?propertyId=213251&days=14&originCountry=ar&originId=PatagonProp&brandId=mapaprop' \
--header 'Authorization: Bearer {access_token}'

Sample code

GET https://property-api.mapaprop.com/property/get/hits Host: property-api.mapaprop.com Content-Type: application/json Authorization: Bearer {access_token} Parameters: propertyId=213251(Number) days=14(Number) originCountry=ar(String) originId=PatagonProp(String) brandId=mapaprop(String)


Response

Devuelve un objeto JSON con el resumen de hits de la propiedad para el origen y rango de dias solicitado.

FieldTypeDescription
daysNumberCantidad de dias del reporte (1, 7, 14, 30 o 90).
hitsNumberTotal de hits acumulados en el rango.
propertyIdStringIdentificador de la propiedad.
originUrlHitStringURL de la propiedad en el portal de origen.
customerIdNumberIdentificador del cliente (derivado del token).
brandStringMarca / sistema que envio los datos.
originCountryStringCodigo de pais del origen.
originIdStringPortal de origen.
reportObjectMapa fecha (YYYY-MM-DD) → cantidad de hits de ese dia.

Sample code

Sample response for the get hits

{ "days": 14, "hits": 7, "propertyId": "213251", "originUrlHit": "https://www.patagonprop.com/ar/propiedad/alquiler-de-departamento-en-caballito-capital-federal-444-191022/5ebebe55a9b6c47f0702173b9a8168cf", "customerId": "444", "brand": "mapaprop", "originCountry": "ar", "originId": "PatagonProp", "report": { "2023-11-07": 0, "2023-11-06": 0, "2023-11-05": 0, "2023-11-04": 1, "2023-11-03": 0, "2023-11-02": 0, "2023-11-01": 0, "2023-10-31": 1, "2023-10-30": 1, "2023-10-29": 1, "2023-10-28": 1, "2023-10-27": 0, "2023-10-26": 2, "2023-10-25": 0 } }


Error Example (status 400 — valor de days invalido)

Date not available or parameter with error.