action refugerestrooms_get_v1_restrooms_by_location { label: "getV1RestroomsByLocation" description: "Search by location." provider: refugerestrooms method: GET path: "/v1/restrooms/by_location" encoding: json input: { type: "object" properties: { ada: { type: "string" } lat: { type: "string" } lng: { type: "string" } offset: { type: "string" } page: { type: "string" } per_page: { type: "string" } unisex: { type: "string" } } required: ["lat", "lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }