action mastodon_post_api_v1_accounts_id_unmute { label: "post_api_v1_accounts_id_unmute" description: "Unmute the given account." provider: mastodon method: POST path: "/api/v1/accounts/{id}/unmute" encoding: json output: { description: "Represents the relationship between accounts, such as following / blocking / muting / etc." required: ["blocked_by", "blocking", "domain_blocking", "endorsed", "followed_by", "following", "id", "muting", "muting_notifications", "note", "notifying", "requested", "showing_reblogs"] properties: { blocked_by: { type: "boolean" description: "Is this user blocking you?" } blocking: { type: "boolean" description: "Are you blocking this user?" } domain_blocking: { type: "boolean" description: "Are you blocking this user's domain?" } endorsed: { type: "boolean" description: "Are you featuring this user on your profile?" } followed_by: { type: "boolean" description: "Are you followed by this user?" } following: { type: "boolean" description: "Are you following this user?" } id: { type: "string" description: "The account id. Cast from an integer, but not guaranteed to be a number." } muting: { type: "boolean" description: "Are you muting this user?" } muting_notifications: { type: "boolean" description: "Are you muting notifications from this user?" } note: { type: "string" description: "This user's profile bio" } notifying: { type: "boolean" description: "Have you enabled notifications for this user?" } requested: { type: "boolean" description: "Do you have a pending follow request for this user?" } showing_reblogs: { type: "boolean" description: "Are you receiving this user's boosts in your home timeline?" } } } }