action mastodon_post_api_v1_lists { label: "post_api_v1_lists" description: "Create a new list." provider: mastodon method: POST path: "/api/v1/lists" encoding: json input: { type: "object" required: ["title"] properties: { replies_policy: { type: "string" description: "Enumerable oneOf followed list none. Defaults to list." enum: ["followed", "list", "none"] } title: { type: "string" description: "The title of the list to be created." } } } output: { description: "Represents a list of some users that the authenticated user follows." required: ["id", "replies_policy", "title"] properties: { id: { type: "string" description: "The internal database ID of the list. Cast from an integer, but not guaranteed to be a number." } replies_policy: { type: "string" description: "The user-defined title of the list." enum: ["followed", "list", "none"] } title: { type: "string" description: "The user-defined title of the list." } } } }