action mastodon_post_api_v1_lists_id_accounts { label: "post_api_v1_lists_id_accounts" description: "Add accounts to the given list. Note that the user must be following these accounts." provider: mastodon method: POST path: "/api/v1/lists/{id}/accounts" encoding: json input: { type: "object" required: ["account_ids"] properties: { account_ids: { type: "array" description: "Array of account IDs to add to the list." items: { type: "string" } } } } output: { type: "object" } }