action twitter_list_id_update { label: "Update List." description: "Update a List that you own." provider: twitter method: PUT path: "/2/lists/{id}" encoding: json input: { type: "object" properties: { description: { type: "string" } id: { type: "string" description: "The unique identifier of this List." } name: { type: "string" } private: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { updated: { type: "boolean" } } } 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" } } } } } } }