action twitter_hide_reply_by_id { label: "Hide replies" description: "Hides or unhides a reply to an owned conversation." provider: twitter method: PUT path: "/2/tweets/{tweet_id}/hidden" encoding: json input: { type: "object" properties: { hidden: { type: "boolean" } tweet_id: { type: "string" description: "Unique identifier of this Tweet. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } } required: ["hidden", "tweet_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { hidden: { type: "boolean" } } } } } }