Tool details
| Field | Value |
|---|---|
| Name | delete_member |
| Group | Members |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"user_id": {
"type": "string",
"description": "User ID to remove"
},
"confirm": {
"type": "boolean",
"description": "Must be true to confirm removal"
}
},
"required": [
"project_reference",
"user_id",
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the delete_member tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"deleted": {
"type": "boolean",
"description": "The deleted associated with this tool result."
}
},
"required": [
"id",
"deleted"
],
"additionalProperties": false,
"description": "Structured result returned by the delete_member tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}