action mastodon_get_api_v1_lists_id { label: "get_api_v1_lists_id" description: "Remove converstation" provider: mastodon method: GET path: "/api/v1/lists/{id}" encoding: json 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." } } } }