action letmc_lettings_controller_get_advertised { label: "Search all properties available for rent given a range of search criteria." provider: letmc method: GET path: "/v2/tier2/{shortName}/lettings/advertised" encoding: json input: { type: "object" properties: { areaID: { type: "string" } branchID: { type: "string" } count: { type: "string" } maximumTenants: { type: "string" } offset: { type: "string" } rentMaximum: { type: "string" } rentMinimum: { type: "string" } shortName: { type: "string" } wantSharedProperties: { type: "string" } wantStudentProperties: { type: "string" } } required: ["branchID", "count", "offset", "shortName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }