removeUserFromList
Remove a specified user from a Twitter list by providing the list ID and username. Streamline list management and maintain organized Twitter curation.
Instructions
Remove a user from a Twitter list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | The ID of the list | |
username | Yes | The username of the user to remove |
Input Schema (JSON Schema)
{
"properties": {
"listId": {
"description": "The ID of the list",
"type": "string"
},
"username": {
"description": "The username of the user to remove",
"type": "string"
}
},
"required": [
"listId",
"username"
],
"type": "object"
}