action dweet_post_dweet_quietly_for_thing { label: "Create a dweet for a thing. This method differs from /dweet/for/{thing} only in that successful dweets result in an HTTP 204 response rather than the typical verbose response." provider: dweet method: POST path: "/dweet/quietly/for/{thing}" encoding: json input: { type: "object" properties: { key: { type: "string" } thing: { type: "string" } } required: ["thing"] additionalProperties: false } output: { type: "object" additionalProperties: true } }