action twitter_list_id_create { label: "Create List" description: "Creates a new List." provider: twitter method: POST path: "/2/lists" encoding: json input: { type: "object" required: ["name"] properties: { description: { type: "string" } name: { type: "string" } private: { type: "boolean" } } } output: { type: "object" properties: { data: { type: "object" description: "A Twitter List is a curated group of accounts." required: ["id", "name"] properties: { id: { type: "string" description: "The unique identifier of this List." } name: { type: "string" description: "The name of this List." } } } errors: { type: "array" items: { type: "object" description: "An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807)." required: ["type", "title"] properties: { detail: { type: "string" } status: { type: "integer" } title: { type: "string" } type: { type: "string" } } } } } } }