action mastodon_post_api_v1_featured_tags { label: "post_api_v1_featured_tags" description: "Create a feature a tag." provider: mastodon method: POST path: "/api/v1/featured_tags" encoding: json input: { type: "object" properties: { name: { type: "string" } } } output: { description: "Represents a hashtag that is featured on a profile." properties: { id: { type: "string" description: "The internal ID of the featured tag in the database. Cast from integer but not guaranteed to be a number" } last_status_at: { type: "string" format: "date-time" description: "The timestamp of the last authored status containing this hashtag. ISO 8601 Datetime." } name: { type: "string" description: "The name of the hashtag being featured." } statuses_count: { type: "integer" description: "The number of authored statuses containing this hashtag." } url: { type: "string" description: "A link to all statuses by a user that contain this hashtag." } } } }