action simplyrets_get_properties_mls_id { label: "Single Listing Endpoint" description: "Use this endpoint for accessing a single listing. When you\nmake a search to the `/properties` endpoint, each listing in\nthe response will contain a unique `mlsId` field which should\nbe used to request that listing on this route.\n\nThe `mlsId` field is a unique identifier for a listing which\nis specific to the SimplyRETS API only. It is different from\nthe `listingId` field is the public number given to a listing\nby the MLS and is not used here.\n" provider: simplyrets method: GET path: "/properties/{mlsId}" encoding: json input: { type: "object" properties: { include: { type: "string" } mlsId: { type: "string" } } required: ["mlsId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }