delete_client
Remove a client from a workspace by specifying the workspace ID and client ID to manage and organize projects effectively.
Instructions
Delete a client
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | Client ID | |
workspaceId | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"description": "Client ID",
"type": "string"
},
"workspaceId": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"workspaceId",
"clientId"
],
"type": "object"
}