action dweet_get_stored_alerts { label: "Read all the saved alerts 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/alerts/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 } }