Tool details
| Field | Value |
|---|---|
| Name | cancel_subscription |
| Group | Billing & Usage |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"confirm": {
"type": "boolean",
"description": "Must be true to confirm cancellation"
}
},
"required": [
"confirm"
],
"additionalProperties": false,
"description": "Input schema for the cancel_subscription 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": [
"deleted"
],
"additionalProperties": false,
"description": "Structured result returned by the cancel_subscription tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}