fakestore_delete_user
Remove a user from the Fake Store API by specifying their user ID. This tool performs simulated deletion for testing and demonstration purposes without persisting changes to the database.
Instructions
Delete a user (simulation - does not persist)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | User ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID to delete",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}