action twitter_list_remove_member { label: "Remove a List member" description: "Causes a User to be removed from the members of a List." provider: twitter method: DELETE path: "/2/lists/{id}/members/{user_id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "The unique identifier of this List." } user_id: { type: "string" description: "Unique identifier of this User. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } } required: ["id", "user_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { is_member: { 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" } } } } } } }