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