Real&Mate Application Real Estate Service Real Estate Service

GET /realandmate/v1/RealEstateService

Returns information about parameters from Real&Mate.


To use this API method, send the GET request. Below is an example of how to call the API:

GET https://example.com/realandmate/v1/RealEstateService

The response will include a JSON string containing information about parameters from Real&Mate. This string can be converted into a JavaScript object for easier use. Below is the format of the object after parsing the string:

{ "id": string, "name": string, "description": string, "service_enabled": boolean, "processing_timeout": boolean, "real_estate_objects":{ "url": string } }

{ "id": 5, "name": "Real&Mate Real Estate Service", "description": "Real&Mate service designed for working with real estate objects.", "service_enabled": true, "processing_timeout": false, "real_estate_objects":{ "url": "https://example.com/realandmate/v1/RealEstateService/RealEstateObjects/77", ... } }

Code Description