Every published listing is stored in our database under its Id. You can eventually unpublish it (Zonaprop API > DELETE aviso ), republish it (Zonaprop API > PUT aviso ) or modify it without losing the data.

This method is used to preserve Mapaprop credentials, and allow you to directly pass your token to each of the endpoints.

to be replaced by a new internal function zonapropAuth.

TypeDescription
AuthorizationProperty API authorization token

Production

Resource information
AuthenticationRequired
HTTP MethodPOST
ResponseJSON
Version1

Resource URL

https://api-navent.mapaprop.com/property-api/navent/login

Parameters - JSON Body

NameTypeRequiredDescription
clientIdstringyesThe client credentials id
clientSecretstringyesThe client credentials secret id

Example Body

// example body
{
            clientId: "UserNavent",
            clientSecret: "123456789"

Response

A JSON indicating the listing status

ObjectFieldTypeDescription
ResponsesuccessstringThe JSON of the access credentials
errorstringA text indicating where the error occurred

Sample code

//Authorization required
//METHOD POST

//Endpoint
https://api-navent.mapaprop.com/property-api/navent/login

Once we receive a response like this, our listing will be ONLINE:

{
  access_token: '{REDACTED-EXAMPLE-TOKEN}',
  token_type: 'bearer',
  expires_in: 315262766,
  scope: 'read write trust'
}

Zonaprop API > Login Navent deprecated