Resource Definitions:MLSs
From API Documentation
(Difference between revisions)
(Created page with 'test') |
|||
Line 1: | Line 1: | ||
- | + | The ''MLSs'' resource is a collection of all MLSs associated with your company. | |
+ | |||
+ | '''''Example URI:''''' <nowiki>http://api.rezora.com/v1/mlss</nowiki> | ||
+ | |||
+ | Available methods are: | ||
+ | |||
+ | == GET == | ||
+ | Returns a list of MLSs. Each MLS record includes the following fields: | ||
+ | |||
+ | * org_id | ||
+ | * mls_name | ||
+ | |||
+ | === Example Response - XML === | ||
+ | <source lang="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> | ||
+ | </source> | ||
+ | |||
+ | === Example Response - JSON === | ||
+ | <source lang="javascript"> | ||
+ | [ | ||
+ | { | ||
+ | "org_id":"comlmls", | ||
+ | "mls_name":"Colorado - Metrolist" | ||
+ | }, | ||
+ | ... | ||
+ | ] | ||
+ | </source> | ||
+ | |||
+ | === Example Response - CSV === | ||
+ | <div style="overflow: auto;"> | ||
+ | <source lang="text"> | ||
+ | "org_id"|"mls_name" | ||
+ | "comlmls"|"Colorado - Metrolist" | ||
+ | ... | ||
+ | </source> | ||
+ | </div> | ||
+ | [[Category:Resource Definitions]] | ||
+ | [[Category:Company Resources]] |
Latest revision as of 01:05, 8 February 2012
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" ...