PRODUCTION

This webservice will return the full list of customers and its information of those who are related to the API consumer network.

Resource information
AuthenticationRequired
HTTP MethodGET
ResponseJSON
Version1

Resource URL

https://www.mapapropapp.com/api/action/network-v1/get-customers

Parameters

KeyTypeRequiredDescription
agencyIdstringnoThe agency ID in particular you want to retrieve. Useful when you get notified that a new customer was added to your network.

Sample code

GET /api/action/network-v1/get-customers HTTP/1.1
Host: www.mapapropapp.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Authorization: Bearer ya29.1.AADtN_UxybTdjLw9jX6lg_SXIgc3wTtek4q2WvfETzSrz7Q6loEYoJEWd1x4qvlpGw

Response

A list of customers in an array belonging to the consumer network in JSON.

ObjectFieldTypeRequiredDescription
CustomeragencyIdstringyesThe agency ID of the mapaprop customer
namestringyesThe name of the agency
logostringyesThe URL of the logo of the agency
biostringnoThe bio of the agency
addressstringyesStreet address of the agency
neighborhoodstringnoNeighborhood of the location of the agency
citystringyesCity of the location of the agency
statestringyesState or province of the location of the agency
countrystringyesThe country of the agency's location
zipcodestringyesThe zip code of the agency's location
emailstringyesThe main email of the agency
phone1stringyesThe main phone number of the agency
phone2stringnoThe secondary phone number of the agency
phone3stringnoThe tertiary phone number of the agency
mobilestringnoThe mobile number of the agency, for instant messengers
urlstringnoThe website url of the agency
entitystringnoRegistrant Legal Entity
registrationstringnoid in Registrant Legal Entity
tempRentalbooleannoIf the agency dedicates only to do temporary rentals

Sample code

[
    {
        "custId": 0,
        "agencyId": "ECID00128401EN",
        "email": "info@tuweb.com",
        "name": "Servicios Inmobiliarios",
        "phone1": "15-1111111",
        "mobile": "541166662222",
        "address": "San Martin 111",
        "country": "Argentina",
        "state": "Capital Federal",
        "city": "Congreso",
        "zipcode": "C1038AAZ",
        "active": false,
        "registration": "181818",
        "entity": "CPI",
        "url": "www.tuweb.com",
        "tempRental": false,
        "bio": "Empresa de servicios inmobiliarios.",
        "logo": "https://images.mapapropapp.com/mapaprop-image/logos/1/logo.gif"
    }
]