Resource Definitions:MLSs

From API Documentation

Jump to: navigation, search

The MLSs resource is a collection of all MLSs associated with your company.

Example URI: http://api.rezora.com/v1/mlss

Available methods are:

Contents

GET

Returns a list of MLSs. Each MLS record includes the following fields:

  • org_id
  • mls_name

Example Response - XML

<?xml version="1.0" encoding="UTF-8"?>
<mlss version="1.0">
 <mls>
  <org_id>comlmls</org_id>
  <mls_name>Colorado - Metrolist</mls_name>
 </mls>
 ...
</mlss>

Example Response - JSON

[
 {
  "org_id":"comlmls",
  "mls_name":"Colorado - Metrolist"
 },
 ...
]

Example Response - CSV

"org_id"|"mls_name"
"comlmls"|"Colorado - Metrolist"
...
Personal tools