action dweet_get_get_stored_dweets_for_thing { label: "Read all the saved dweets for a thing from long term storage. You can query a maximum of 1 day per request and a granularly of 1 hour." provider: dweet method: GET path: "/get/stored/dweets/for/{thing}" encoding: json input: { type: "object" properties: { date: { type: "string" } hour: { type: "string" } key: { type: "string" } responseType: { type: "string" } thing: { type: "string" } } required: ["date", "key", "thing"] additionalProperties: false } output: { type: "object" additionalProperties: true } }